OLD | NEW |
1 { | 1 { |
2 "name": "adblockpluscore", | 2 "name": "adblockpluscore", |
3 "repository": "https://hg.adblockplus.org/adblockpluscore", | 3 "repository": "https://hg.adblockplus.org/adblockpluscore", |
4 "license": "GPL-3.0", | 4 "license": "GPL-3.0", |
5 "dependencies": {}, | 5 "dependencies": {}, |
6 "devDependencies": { | 6 "devDependencies": { |
7 "sandboxed-module": "2.0.3", | 7 "node-qunit-phantomjs": "^1.5.0", |
8 "nodeunit": "0.9.1" | 8 "nodeunit": "0.9.1", |
| 9 "qunitjs": "^2.1.0", |
| 10 "sandboxed-module": "2.0.3" |
9 }, | 11 }, |
10 "scripts": { | 12 "scripts": { |
11 "test": "node test_runner.js" | 13 "test": "npm run test-node; npm run test-browser", |
| 14 "test-node": "node test_runner.js", |
| 15 "test-browser": "node_modules/node-qunit-phantomjs/bin/node-qunit-phantomjs
test/browser/index.html" |
12 } | 16 } |
13 } | 17 } |
OLD | NEW |