-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 748 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 748 Bytes
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
{
"author": "Wonyong Kim(chokobole33@gmail.com)",
"bugs": {
"url": "https://github.com/chokobole/node-binding/issues"
},
"description": "A helper to bind nodejs using node-addon-api easily",
"main": "index.js",
"name": "node-binding",
"directories": {},
"homepage": "https://github.com/chokobole/node-binding#readme",
"keywords": [
"node-addon-api",
"c++",
"bindings"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/chokobole/node-binding.git"
},
"scripts": {
"pretest": "./test/build_all.sh",
"test": "mocha"
},
"version": "1.4.0",
"dependencies": {
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"mocha": "^6.2.2"
}
}