This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 2.39 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "web-api-manager",
"version": "0.9.27",
"description": "Tools to generate Web API managing browser extensions for Firefox and Chrome.",
"author": "Peter Snyder <[email protected]> (https://www.cs.uic.edu/~psnyder/)",
"license": "GPL-3.0",
"dependencies": {
"tar": "^4.4.8"
},
"homepage": "https://github.com/snyderp/web-api-manager",
"bugs": {
"url": "https://github.com/snyderp/web-api-manager/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/snyderp/web-api-manager.git"
},
"keywords": [
"browser extension",
"privacy",
"security"
],
"contributors": [],
"scripts": {
"clean": "rm -Rf dist/",
"bundle": "node_modules/gulp/bin/gulp.js clean && node_modules/gulp/bin/gulp.js && node_modules/web-ext/bin/web-ext -s add-on -a dist build --overwrite-dest",
"firefox": "node_modules/cross-env/dist/bin/cross-env.js npm run bundle && node_modules/web-ext/bin/web-ext -s add-on run --ignore-files '**/*.js'",
"lint": "node_modules/eslint/bin/eslint.js .",
"lint:fix": "node_modules/eslint/bin/eslint.js --fix .",
"test": "npm run clean; npm run bundle && ln -s `ls dist/` dist/webapi_manager.zip && node_modules/cross-env/dist/bin/cross-env.js node_modules/mocha/bin/mocha test/unit/*.js test/functional/*.js --only-local-tests",
"test:watch": "node_modules/cross-env/dist/bin/cross-env.js npm test --watch",
"test:all": "npm run clean; npm run bundle && ln -s `ls dist/` dist/webapi_manager.zip && node_modules/cross-env/dist/bin/cross-env.js node_modules/mocha/bin/mocha test/unit/*.js test/functional/*.js",
"test:unit": "npm run clean; npm run bundle && ln -s `ls dist/` dist/webapi_manager.zip && node_modules/cross-env/dist/bin/cross-env.js node_modules/mocha/bin/mocha test/unit/*.js"
},
"pre-push": {
"run": [
"lint"
]
},
"devDependencies": {
"assert": "^1.4.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"geckodriver": "^1.16.2",
"gulp": "^4.0.2",
"mocha": "^4.1.0",
"pre-commit": "^1.2.2",
"selenium-webdriver": "^3.6.0",
"sjcl": "^1.0.7",
"uri-js": "^3.0.2",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"web-ext": "^3.0.0"
}
}