-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 922 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "scanner",
"version": "0.0.1",
"description": "Advise on what's adblocking you.",
"main": "index.js",
"scripts": {
"test": "electron-mocha",
"testmon": "nodemon --exec '(electron-mocha && growlnotify -n nodemon --image ~/green.png -m good) || (growlnotify -n nodemon --image ~/red.png -m crash && exit 1)'",
"coverage": "electron-mocha --require test/coverage && istanbul report lcov",
"coverage:upload": "cat ./coverage/lcov.info | coveralls"
},
"bin": {
"scan": "./bin/scan"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"electron-mocha": "^2.3.0",
"express": "^4.14.0",
"glob": "^7.0.5",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"sinon": "^1.17.4"
},
"dependencies": {
"electron-prebuilt": "^1.2.6",
"temp": "^0.8.3",
"yargs": "^4.7.1"
}
}