OLD | NEW |
1 { | 1 { |
2 "name": "adblockpluschrome", | 2 "name": "adblockpluschrome", |
3 "repository": "https://hg.adblockplus.org/adblockpluschrome", | 3 "repository": "https://hg.adblockplus.org/adblockpluschrome", |
4 "license": "GPL-3.0", | 4 "license": "GPL-3.0", |
5 "dependencies": {}, | 5 "dependencies": {}, |
6 "devDependencies": { | 6 "devDependencies": { |
| 7 "dmg": "0.1.0", |
7 "eslint": "^5.1.0", | 8 "eslint": "^5.1.0", |
8 "eslint-config-eyeo": "^2.1.0" | 9 "eslint-config-eyeo": "^2.1.0", |
| 10 "extract-zip": "1.6.5", |
| 11 "geckodriver": "^1.9.0", |
| 12 "ncp": "2.0.0", |
| 13 "nodeunit": "0.9.1", |
| 14 "selenium-webdriver": "^3.6.0" |
9 }, | 15 }, |
10 "scripts": { | 16 "scripts": { |
11 "lint": "eslint *.js lib/ qunit/ ext/", | 17 "lint": "eslint *.js lib/ qunit/ ext/ test/", |
| 18 "run_tests": "nodeunit test/*", |
| 19 "test": "_run () { python build.py devenv -t $1; npm run run_tests ; } ; _ru
n", |
12 "posttest": "npm run lint" | 20 "posttest": "npm run lint" |
13 } | 21 } |
14 } | 22 } |
OLD | NEW |