forked from laverdet/isolated-vm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@integromat/isolated-vm",
"version": "4.8.3",
"description": "Access to multiple isolates - Make Fork",
"main": "isolated-vm.js",
"types": "isolated-vm.d.ts",
"engines": {
"node": ">=16 <21"
},
"scripts": {
"install": "node-gyp-build-optional",
"rebuild": "node-gyp rebuild --release -j max",
"prebuild": "prebuild",
"upload": "prebuild --upload ${GITHUB_TOKEN}",
"lint": "find src -name '*.cc' | xargs -n1 clang-tidy",
"test": "node test.js"
},
"dependencies": {
"node-gyp-build": "^4.8.1"
},
"devDependencies": {
"isolated-vm": ".",
"node-gyp": "^10.1.0",
"prebuildify": "^6.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"
}