-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.1 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
56
57
{
"name": "nhttp2",
"description": "Bindings for the nghttp2 C API to the Node.JS world.",
"version": "1.0.0",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "[email protected]"
},
{
"name": "Mauro Doganieri",
"email": "[email protected]"
}
],
"keywords": [
"http",
"http2",
"client",
"server",
"native",
"nghttp2"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json"
},
"engines": {
"node": ">= 4.0.0"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/nhttp2.git"
},
"bugs": {
"url": "https://github.com/NickNaso/nhttp2/issues"
},
"homepage": "http://www.nacios.it/",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.6.2"
},
"devDependencies": {
"jasmine": "^2.6.0"
},
"main": "./index.js",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"binding.gyp",
"index.js",
"binding.gyp",
"lib/",
"src/"
]
}