-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 940 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 940 Bytes
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
{
"name": "isolated-vm",
"version": "6.1.2",
"description": "Access to multiple isolates",
"main": "isolated-vm.js",
"types": "isolated-vm.d.ts",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"install": "node-gyp-build || node-gyp rebuild --release -j max",
"prebuild": "node scripts/run-prebuild.js",
"rebuild": "node-gyp rebuild --release -j max",
"lint": "find src -name '*.cc' | xargs -n1 clang-tidy",
"test": "node test.js"
},
"dependencies": {
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"isolated-vm": ".",
"prebuildify": "^6.0.1"
},
"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"
}