-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "adminbookmarklet",
"version": "3.0.2",
"description": "Dynamic Bookmarklet written in pure JavaScript to quickly access the login page of your CMS or E-Commerce system",
"main": "adminBookmarklet.js",
"scripts": {
"minify:compile": "babel-minify --comments false adminBookmarklet.js --out-file adminBookmarklet.min.js",
"minify:wrap": "cat adminBookmarklet.min.js | wrap \"javascript:!(()=>{\" \"})();\" > tmpfile && cat tmpfile > adminBookmarklet.min.js && rm tmpfile",
"minify": "yarn run minify:compile && yarn run minify:wrap",
"lint:js": "eslint --config .eslintrc adminBookmarklet.js",
"lint:html": "htmlhint --config .htmlhintrc docs/index.html;",
"lint": "yarn run lint:js && yarn run lint:html",
"test:unit": "mocha --colors --sort --check-leaks --use_strict -r mock-browser",
"test": "yarn run lint && yarn run test:unit",
"build": "yarn run minify && yarn run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomlutzenberger/adminBookmarklet.git"
},
"author": "Tom Lutzenberger",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomlutzenberger/adminBookmarklet/issues"
},
"homepage": "https://tomlutzenberger.github.io/adminBookmarklet/",
"devDependencies": {
"babel-minify": "^0.5.1",
"babel-preset-minify": "^0.5.1",
"cmd-wrap": "^1.0.4",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"htmlhint": "^0.11.0",
"mocha": "^6.2.2",
"mock-browser": "^0.92.14",
"rewire": "^2.5.2"
},
"dependencies": {}
}