-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "http-reduce",
"id": "http-reduce",
"version": "0.5.0",
"description": "Reducible HTTP library",
"keywords": [
"http",
"reduce",
"reducible",
"reducers",
"stream",
"request"
],
"author": "Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"homepage": "https://github.com/Gozala/http-reduce",
"repository": {
"type": "git",
"url": "https://github.com/Gozala/http-reduce.git",
"web": "https://github.com/Gozala/http-reduce"
},
"bugs": {
"url": "http://github.com/Gozala/http-reduce/issues/"
},
"dependencies": {
"reducers": "~2.0.0",
"method": "~1.0.0",
"reducible": "~1.0.1"
},
"devDependencies": {
"test": "~0.6.0",
"phantomify": "~0.1.0",
"repl-utils": ">=1.0.0"
},
"browserify": {
"main": "./browser/http.js"
},
"main": "./node/http.js",
"scripts": {
"test": "npm run test-server & npm run test-browser",
"test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/index.js http://localhost:8082/",
"test-server": "node ./test/server.js",
"repl": "node node_modules/repl-utils",
"postinstall": "npm dedup"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Gozala/http-reduce/License.md"
}
]
}