forked from nfriedly/node-unblocker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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
{
"name": "unblocker",
"description": "Web proxy for evading internet censorship & general-purpose library for rewriting remote websites.",
"author": "Nathan Friedly - http://nfriedly.com",
"version": "2.0.9",
"repository": "git://github.com/nfriedly/node-unblocker.git",
"engines": {
"node": ">=6"
},
"dependencies": {
"async": "^3.1.0",
"content-type": "^1.0.4",
"cookie": "^0.4.0",
"debug": "^4.1.1",
"iconv-lite": "^0.6.2",
"lodash": "^4.17.15",
"mime": "^2.4.4",
"set-cookie-parser": "^2.4.1",
"tld": "0.0.2"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"hyperquest": "^2.1.3",
"js-beautify": "^1.10.2",
"jshint": "^2.10.3",
"math-helpers": "~0.1.0",
"nodemon": "^2.0.2",
"tap": "^14.10.7"
},
"jshintConfig": {
"undef": true,
"unused": true,
"newcap": true,
"node": true,
"browser": false,
"devel": true
},
"todoJshintConfig": {
"strict": true,
"camelcase": true
},
"scripts": {
"watch": "nodemon --watch ./ --ignore ./examples --ext js,html,xhtml,json --exec npm run test",
"test": "npm run jshint && npm run test-spec",
"pre-commit": "npm run beautify && npm test",
"beautify": "js-beautify --end-with-newline --replace ./lib/*.js ./test/*.js",
"jshint": "jshint ./lib ./test",
"test-spec": "tap test/*spec.js",
"test-perf": "node test/performance.js"
},
"license": "AGPL-3.0",
"main": "lib/unblocker.js"
}