-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.31 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bare-link",
"version": "1.0.9",
"description": "Native addon linker for Bare",
"exports": {
".": "./index.js",
"./package": "./package.json"
},
"bin": {
"bare-link": "bin.js"
},
"files": [
"index.js",
"bin.js",
"lib"
],
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"os": {
"bare": "bare-os",
"default": "os"
},
"path": {
"bare": "bare-path",
"default": "path"
},
"process": {
"bare": "bare-process",
"default": "process"
},
"url": {
"bare": "bare-url",
"default": "url"
}
},
"scripts": {
"test": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-link.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-link/issues"
},
"homepage": "https://github.com/holepunchto/bare-link#readme",
"dependencies": {
"bare-fs": "^3.1.1",
"bare-module-resolve": "^1.8.2",
"bare-os": "^3.2.0",
"bare-path": "^3.0.0",
"bare-process": "^3.0.0",
"bare-url": "^2.0.9",
"paparam": "^1.5.0"
},
"devDependencies": {
"brittle": "^3.2.1",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0"
}
}