-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 945 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
{
"name": "bare-signals",
"version": "3.0.2",
"description": "Native signal handling for JavaScript",
"exports": {
".": "./index.js",
"./package": "./package.json",
"./errors": "./lib/errors.js",
"./emitter": "./lib/emitter.js"
},
"files": [
"index.js",
"binding.c",
"binding.js",
"CMakeLists.txt",
"lib",
"prebuilds"
],
"addon": true,
"scripts": {
"test": "standard && bare test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-signals.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-signals/issues"
},
"homepage": "https://github.com/holepunchto/bare-signals#readme",
"dependencies": {
"bare-events": "^2.0.0",
"bare-os": "^3.0.1"
},
"devDependencies": {
"brittle": "^3.2.1",
"cmake-bare": "^1.1.6",
"standard": "^17.0.0"
}
}