-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.37 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": "node-unblocker",
"description": "Web proxy for evading internet censorship",
"author": "Nathan Friedly - http://nfriedly.com",
"version": "0.12.1",
"repository": "git://github.com/nfriedly/node-unblocker.git",
"dependencies": {
"redis-url": "0.1.x",
"redis": "0.8.x",
"connect": "2.7.x",
"connect-redis": "1.4.x",
"iconv": "2.0.x",
"underscore": "~1.5.2",
"through": "~2.3.4",
"async": "~0.2.9",
"mime": "~1.2.11",
"newrelic": "~1.1.1",
"gatling": "~1.1.1"
},
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"main": "server",
"devDependencies": {
"concat-stream": "~1.2.0",
"tap": "~0.4.6",
"hyperquest": "~0.1.8",
"math-helpers": "~0.1.0",
"taskgroup": "~3.3.2",
"jshint": "~2.3.0",
"js-beautify": "~1.4.2"
},
"jshintConfig": {
"undef": true,
"unused": true,
"newcap": true,
"node": true,
"browser": false,
"devel": true
},
"todoJshintConfig": {
"strict": true,
"camelcase": true
},
"scripts": {
"start": "gatling ./app.js",
"test": "npm run jshint && npm run test-spec",
"pre-commit": "npm run beautify && npm test",
"beautify": "js-beautify --replace ./*.js ./lib/*.js ./test/*.js",
"jshint": "jshint ./ --exclude node_modules/",
"test-spec": "tap test/*_spec.js",
"test-perf": "node test/performance.js"
}
}