-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "swat-proxy",
"version": "1.1.0",
"description": "A NodeJS proxy server for web application injection.",
"keywords": [
"3pjs",
"http",
"inject",
"man-in-the-middle",
"manipulate",
"proxy",
"server",
"third-party",
"tool",
"util",
"utility"
],
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"eslint": "eslint index.js src/** test/**",
"postinstall": "npm run build",
"precommit": "npm test && npm run eslint",
"test": "tape -r babel-register 'test/**/*.spec.js' | tap-spec"
},
"config": {
"ghooks": {
"pre-commit": "npm run precommit"
}
},
"repository": {
"type": "git",
"url": "git://github.com/bazaarvoice/swat-proxy.git"
},
"engines": {
"node": ">=5.6.0",
"npm": ">=3.6.0"
},
"license": "Apache 2.0",
"dependencies": {
"babel-cli": "6.7.7",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-node6": "11.0.0",
"babel-register": "6.9.0",
"cheerio": "0.20.0",
"request": "2.72.0"
},
"devDependencies": {
"eslint": "2.9.0",
"eslint-plugin-react": "5.1.1",
"ghooks": "1.3.2",
"tap-spec": "4.1.1",
"tape": "4.5.1"
}
}