-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 895 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
40
41
42
43
44
45
46
{
"name": "@flowiseai/nodevm",
"description": "nodevm is a sandbox that can run untrusted code with whitelisted Node's built-in modules",
"keywords": [
"sandbox",
"prison",
"jail",
"vm",
"alcatraz",
"contextify"
],
"version": "3.9.25",
"main": "index.js",
"sideEffects": false,
"license": "MIT",
"dependencies": {
"acorn": "^8.7.0",
"acorn-walk": "^8.2.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-integromat": "^1.5.0",
"mocha": "^6.2.2"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.6"
},
"packageManager": "[email protected]",
"scripts": {
"test": "mocha test",
"pretest": "eslint ."
},
"bin": {
"vm2": "bin/vm2"
},
"types": "index.d.ts",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib",
"test": "test"
},
"author": "flowiseai"
}