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 "//": [ | 7 "//": [ |
8 "'dmg', 'extract-zip' and 'ncp' are needed by `download_*.js` modules", | 8 "'dmg', 'extract-zip' and 'ncp' are needed by `download_*.js` modules", |
9 "in adblockpluscore/test/.", | 9 "in adblockpluscore/test/.", |
10 "The chromedriver version was pinned to that exact version, due to", | 10 "The chromedriver version was pinned to that exact version, due to", |
11 "incompatibilities with the configured chromium version and newer", | 11 "incompatibilities with the configured chromium version and newer", |
12 "drivers." | 12 "drivers." |
13 ], | 13 ], |
14 "argparse": "^1.0.10", | 14 "argparse": "^1.0.10", |
15 "chromedriver": "2.36.0", | 15 "chromedriver": "2.36.0", |
16 "dmg": "^0.1.0", | 16 "dmg": "^0.1.0", |
17 "eslint": "^5.1.0", | 17 "eslint": "^5.1.0", |
18 "eslint-config-eyeo": "^2.1.0", | 18 "eslint-config-eyeo": "^2.1.0", |
19 "extract-zip": "^1.6.5", | 19 "extract-zip": "^1.6.5", |
20 "geckodriver": "^1.9.0", | 20 "geckodriver": "^1.9.0", |
21 "handlebars": "^4.0.12", | 21 "handlebars": "^4.0.12", |
22 "jimp": "^0.3.11", | 22 "jimp": "^0.3.11", |
| 23 "jsdoc": "^3.5.5", |
23 "ncp": "^2.0.0", | 24 "ncp": "^2.0.0", |
24 "mocha": "^5.2.0", | 25 "mocha": "^5.2.0", |
25 "selenium-webdriver": "^3.6.0", | 26 "selenium-webdriver": "^3.6.0", |
26 "sign-addon": "^0.3.1" | 27 "sign-addon": "^0.3.1" |
27 }, | 28 }, |
28 "scripts": { | 29 "scripts": { |
29 "pretest": "bash -c \"python ensure_dependencies.py\"", | 30 "pretest": "bash -c \"python ensure_dependencies.py\"", |
30 "lint": "eslint *.js lib/ qunit/ ext/ test/ build/", | 31 "lint": "eslint *.js lib/ qunit/ ext/ test/ build/", |
31 "test-only": "mocha", | 32 "test-only": "mocha", |
32 "test": "npm run test-only --", | 33 "test": "npm run test-only --", |
33 "posttest": "npm run lint", | 34 "posttest": "npm run lint", |
34 "publish": "node build/publish.js" | 35 "publish": "node build/publish.js", |
| 36 "docs": "jsdoc --configure jsdoc.conf --destination docs lib" |
35 } | 37 } |
36 } | 38 } |
OLD | NEW |