Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: package.json

Issue 29860555: Issue 6717 - Part 2: run qunit in headless firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/file/3270e924ba9f
Patch Set: Fix type in README.md Created Aug. 22, 2018, 7:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: package.json
diff --git a/package.json b/package.json
index 63e144b1babbd3e1819169d956af067e2159b858..a9b3eff35f27869b9f825f2701df890da44b5ecc 100644
--- a/package.json
+++ b/package.json
@@ -4,11 +4,19 @@
"license": "GPL-3.0",
"dependencies": {},
"devDependencies": {
+ "dmg": "0.1.0",
"eslint": "^5.1.0",
- "eslint-config-eyeo": "^2.1.0"
+ "eslint-config-eyeo": "^2.1.0",
+ "extract-zip": "1.6.5",
+ "geckodriver": "^1.9.0",
+ "ncp": "2.0.0",
+ "nodeunit": "0.9.1",
Sebastian Noack 2018/08/22 18:16:38 Any reason you pin exact versions for dmg, extract
hub 2018/08/22 19:21:08 For "dmg" it is the exact same as in adblockplusco
Sebastian Noack 2018/08/22 20:06:43 Acknowledged, but what is about the other dependen
tlucas 2018/08/22 20:24:00 No real reason, besides following Hubert's suggest
Sebastian Noack 2018/08/22 20:54:34 The canonical way to refer to a dependency's versi
tlucas 2018/08/23 08:47:27 Adjusted the pinnings. I also found a way to add
+ "selenium-webdriver": "^3.6.0"
},
"scripts": {
- "lint": "eslint *.js lib/ qunit/ ext/",
+ "lint": "eslint *.js lib/ qunit/ ext/ test/",
+ "run_tests": "nodeunit test/*",
+ "test": "_run () { python build.py devenv -t $1; npm run run_tests ; } ; _run",
"posttest": "npm run lint"
}
}

Powered by Google App Engine
This is Rietveld