-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "bare-module-traverse",
"version": "1.3.3",
"description": "Low-level module graph traversal for Bare",
"exports": {
".": "./index.js",
"./package": "./package.json",
"./resolve": "./lib/resolve.js",
"./resolve/default": "./lib/resolve/default.js",
"./resolve/bare": "./lib/resolve/bare.js",
"./resolve/node": "./lib/resolve/node.js"
},
"files": [
"index.js",
"lib"
],
"imports": {
"#runtime": {
"bare": "./lib/runtime/bare.js",
"node": "./lib/runtime/node.js"
}
},
"scripts": {
"test": "npm run lint && npm run test:bare && npm run test:node",
"test:bare": "bare test.js",
"test:node": "node test.js",
"lint": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-module-traverse.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-module-traverse/issues"
},
"homepage": "https://github.com/holepunchto/bare-module-traverse#readme",
"dependencies": {
"bare-addon-resolve": "^1.5.0",
"bare-module-lexer": "^1.0.0",
"bare-module-resolve": "^1.7.0"
},
"devDependencies": {
"brittle": "^3.2.1",
"prettier": "^3.4.2",
"prettier-config-standard": "^7.0.0"
}
}