-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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-addon-api-helper",
"version": "2.2.0",
"description": "Simplify node-addon-api native binding development with C++ meta programming",
"main": "index.js",
"scripts": {
"ut": "mocha 'test/*.js'",
"pretest": "node-gyp rebuild -C test",
"test": "npm run ut",
"predev": "node-gyp rebuild -C test --debug",
"dev": "npm run ut",
"predev:incremental": "node-gyp configure build -C test --debug",
"dev:incremental": "npm run ut",
"lint": "node node_modules/node-addon-api/tools/eslint-format && node node_modules/node-addon-api/tools/clang-format",
"lint:fix": "node node_modules/node-addon-api/tools/clang-format --fix && node node_modules/node-addon-api/tools/eslint-format --fix",
"prepare": "husky install"
},
"author": {
"name": "ajihyf",
"url": "https://github.com/ajihyf"
},
"license": "MIT",
"devDependencies": {
"bindings": "^1.5.0",
"chai": "^4.3.6",
"clang-format": "^1.6.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"mocha": "^9.2.2",
"node-gyp": "^10.0.0",
"husky": "^7.0.0"
},
"dependencies": {
"node-addon-api": ">=4"
},
"files": [
"*.{h,gyp,gypi}"
],
"gypfile": false,
"homepage": "https://github.com/ajihyf/node-addon-api-helper",
"keywords": [
"n-api",
"napi",
"addon",
"native",
"bindings",
"c",
"c++",
"node-addon-api"
],
"repository": {
"type": "git",
"url": "[email protected]:ajihyf/node-addon-api-helper.git"
}
}