-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 876 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 876 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "vm2",
"description": "vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.",
"keywords": [
"sandbox",
"prison",
"jail",
"vm",
"alcatraz",
"contextify"
],
"version": "3.10.5",
"main": "index.js",
"sideEffects": false,
"repository": "github:patriksimek/vm2",
"license": "MIT",
"dependencies": {
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4"
},
"devDependencies": {
"eslint": "^9.38.0",
"mocha": "^11.1.0"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "mocha test --ignore test/compilers.js",
"test:compilers": "mocha test/compilers.js",
"lint": "eslint ."
},
"bin": {
"vm2": "./bin/vm2"
},
"types": "index.d.ts",
"files": [
"lib",
"index.js",
"index.d.ts",
"LICENSE.md",
"README.md"
]
}