-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 997 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
43
{
"name": "napi-sync-callback-example",
"version": "0.1.0",
"description": "Node v8.x N-API synchronous callback example addon",
"repository": {
"type": "git",
"url": "git+https://github.com/JamesMGreene/napi-sync-callback-example.git"
},
"keywords": [
"napi",
"n-api",
"native",
"addon",
"synchronous",
"sync",
"callback"
],
"author": {
"name": "James M. Greene",
"email": "james.m.greene@gmail.com",
"url": "http://jamesmgreene.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesMGreene/napi-sync-callback-example/issues"
},
"homepage": "https://github.com/JamesMGreene/napi-sync-callback-example#readme",
"main": "index.js",
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"test": "node-gyp configure build && mocha"
},
"dependencies": {
"bindings": "^1.3.0",
"node-addon-api": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1"
}
}