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 the module", | 8 "'dmg', 'extract-zip' and 'ncp' are needed by `download_*.js` modules", |
9 "adblockpluscore/test/download_firefox.js." | 9 "in adblockpluscore/test/.", |
10 "The chromedriver version was pinned to that exact version, due tu in-", | |
Sebastian Noack
2018/08/27 19:56:15
Typo: It's "due to incompatibilities".
tlucas
2018/08/28 08:18:13
That's exactly what's written here?... Or do you m
Sebastian Noack
2018/08/28 14:44:57
It's not. What's written here is "due tu in-compat
tlucas
2018/08/29 09:16:53
Done.
| |
11 "compatibilities with the configured chromium version and newer drivers." | |
10 ], | 12 ], |
13 "chromedriver": "2.36.0", | |
11 "dmg": "^0.1.0", | 14 "dmg": "^0.1.0", |
12 "eslint": "^5.1.0", | 15 "eslint": "^5.1.0", |
13 "eslint-config-eyeo": "^2.1.0", | 16 "eslint-config-eyeo": "^2.1.0", |
14 "extract-zip": "^1.6.5", | 17 "extract-zip": "^1.6.5", |
15 "geckodriver": "^1.9.0", | 18 "geckodriver": "^1.9.0", |
16 "ncp": "^2.0.0", | 19 "ncp": "^2.0.0", |
17 "mocha": "^5.2.0", | 20 "mocha": "^5.2.0", |
18 "selenium-webdriver": "^3.6.0" | 21 "selenium-webdriver": "^3.6.0" |
19 }, | 22 }, |
20 "scripts": { | 23 "scripts": { |
21 "lint": "eslint *.js lib/ qunit/ ext/ test/", | 24 "lint": "eslint *.js lib/ qunit/ ext/ test/", |
22 "pretest": "python build.py devenv -t gecko", | |
23 "test": "mocha", | 25 "test": "mocha", |
24 "posttest": "npm run lint" | 26 "posttest": "npm run lint" |
25 } | 27 } |
26 } | 28 } |
OLD | NEW |