-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 947 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
{
"name": "napi-threadsafe-deferred",
"version": "0.3.1",
"description": "A thread-safe variant of a Napi-Promise which can be resolved from any thread.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0815fox/node-napi-threadsafe-deferred.git"
},
"keywords": [
"napi",
"deferred",
"promise",
"thread",
"safe",
"async"
],
"author": "0815fox (Michael Kriegel)",
"license": "MIT",
"bugs": {
"url": "https://github.com/0815fox/node-napi-threadsafe-deferred/issues"
},
"homepage": "https://github.com/0815fox/node-napi-threadsafe-deferred#readme",
"devDependencies": {
"node-gyp": "^7.0.0"
},
"files": [
"/src/*",
"/binding.gyp",
"/index.js"
],
"dependencies": {
"node-addon-api": "^3.0.0"
}
}