-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1017 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
44
45
{
"name": "napi_thread_safe_promise",
"version": "1.2.6",
"description": "C++ napi threadd safe promises",
"main": "jsbuild/index.js",
"scripts": {
"test": "npm run test-rebuild",
"build": "tsc",
"test-rebuild": "node-gyp configure build --directory test --debug",
"test-clean": "node-gyp clean --directory test",
"prepare": "npm run build"
},
"author": "Surien Das-Giwojno",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/SurienDG/NAPI-Thread-Safe-Promise"
},
"keywords": [
"thread",
"napi",
"threadsafe",
"promise",
"c++",
"node-addon-api"
],
"gypfile": false,
"dependencies": {
"node-addon-api": "^3.0.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/node": "^13.13.5",
"bindings": "^1.5.0",
"node-gyp": "^6.1.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"files": [
"/src/*.h",
"/src/*.cc",
"/**/*.js",
"/binding.gyp"
]
}