-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
37 lines (37 loc) · 958 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
{
"name": "isolated-vm",
"version": "5.0.1",
"description": "Access to multiple isolates",
"main": "isolated-vm.js",
"types": "isolated-vm.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install": "prebuild-install || (node-gyp rebuild --release -j max && node-gyp clean)",
"rebuild": "node-gyp rebuild --release -j max",
"lint": "find src -name '*.cc' | xargs -n1 clang-tidy",
"test": "node test.js"
},
"dependencies": {
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"isolated-vm": ".",
"prebuild": "^13.0.1"
},
"binary": {
"module_path": "out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laverdet/isolated-vm.git"
},
"author": "https://github.com/laverdet/",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/laverdet/isolated-vm/issues"
},
"homepage": "https://github.com/laverdet/isolated-vm#readme"
}