-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 940 Bytes
/
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
{
"name": "kizunapi",
"description": "C++ Wrappers of Node-API",
"main": "index.js",
"version": "0.0.1",
"gypfile": false,
"files": [
"src",
"kizunapi.h"
],
"scripts": {
"pretest": "node-gyp rebuild --debug -C test",
"lint": "cpplint --recursive --filter=-build/include_what_you_use src test",
"test": "node --expose-gc test/index.js",
"test:incremental": "node-gyp build --debug -C test && node --expose-gc test"
},
"readme": "README.md",
"license": "MIT",
"homepage": "https://github.com/zcbenz/kizunapi",
"repository": {
"type": "git",
"url": "git://github.com/zcbenz/kizunapi.git"
},
"bugs": {
"url": "https://github.com/zcbenz/kizunapi/issues"
},
"keywords": [
"n-api",
"napi",
"addon",
"native",
"bindings",
"c",
"c++",
"nan",
"node-addon-api"
],
"devDependencies": {
"cpplint.js": "2.0.0",
"tapsert": "2.0.0"
}
}