-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 KB
/
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
34
35
36
37
38
39
{
"name": "web_exploit_detector",
"version": "1.1.6",
"description": "A system to detect infected or suspicious files based on a set of rules",
"main": "index.js",
"scripts": {
"build": "babel src -d lib",
"watch:build": "nodemon -w src --exec npm run build",
"test": "jasmine",
"watch:test": "nodemon -w lib -w spec -w rules --exec npm run test",
"lint": "eslint *.js src spec rules",
"watch:lint": "nodemon -w src -w spec -w rules --exec npm run lint",
"watch:all": "nodemon -w lib -w src -w spec -w rules -d 2 --exec \"npm run lint && npm run test\""
},
"author": "Simon Pugnet <simon@polaris64.net>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/polaris64/web_exploit_detector"
},
"bin": {
"wed-scanner": "./index.js",
"wed-results-to-exceptions": "./results_to_exceptions.js",
"wed-generate-snapshot": "./generate_snapshot.js",
"wed-compare-snapshot": "./compare_snapshot.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"graceful-fs": "^4.1.11",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"jasmine": "^2.5.3",
"nodemon": "^1.11.0"
}
}