Left: | ||
Right: |
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 "ncp": "^2.0.0", | 23 "ncp": "^2.0.0", |
24 "mocha": "^5.2.0", | 24 "mocha": "^5.2.0", |
25 "selenium-webdriver": "^3.6.0", | 25 "selenium-webdriver": "4.0.0-alpha1", |
Sebastian Noack
2018/11/06 09:02:33
We might want to require ^4.0.0-alpha here.
tlucas
2018/11/07 08:57:16
If not, there's still a typo: 4.0.0-alpha.1
hub
2018/11/07 17:13:36
I had started with that but I'm wondering of the A
hub
2018/11/07 17:13:36
oops.
| |
26 "sign-addon": "^0.3.1" | 26 "sign-addon": "^0.3.1" |
27 }, | 27 }, |
28 "scripts": { | 28 "scripts": { |
29 "pretest": "bash -c \"python ensure_dependencies.py\"", | 29 "pretest": "bash -c \"python ensure_dependencies.py\"", |
30 "lint": "eslint *.js lib/ qunit/ ext/ test/ build/", | 30 "lint": "eslint *.js lib/ qunit/ ext/ test/ build/", |
31 "test-only": "mocha", | 31 "test-only": "mocha", |
32 "test": "npm run test-only --", | 32 "test": "npm run test-only --", |
33 "posttest": "npm run lint", | 33 "posttest": "npm run lint", |
34 "publish": "node build/publish.js" | 34 "publish": "node build/publish.js" |
35 } | 35 } |
36 } | 36 } |
OLD | NEW |