-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 919 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": "script-linker",
"version": "2.5.4",
"description": "CJS/MJS source loader that can preresolve imports/requires so linking them on runtime runs much faster.",
"main": "index.js",
"author": "Holepunch",
"license": "Apache-2.0",
"scripts": {
"test": "standard && brittle test/*.test.*js",
"lint": "standard"
},
"files": [
"*.js",
"lib/**.js"
],
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"dependencies": {
"acorn": "^8.6.0",
"b4a": "^1.3.1",
"cjs-module-lexer": "^1.2.2",
"drive-resolve": "^1.0.1",
"es-module-lexer": "^1.6.0",
"is-valid-variable": "^1.0.0",
"read-write-mutexify": "^2.0.0",
"source-map-bare": "^1.0.0",
"unix-path-resolve": "^1.0.2"
},
"devDependencies": {
"brittle": "^3.1.0",
"jquery": "^3.6.0",
"jsdom": "^19.0.0",
"localdrive": "^2.0.0",
"standard": "^17.0.0"
}
}