-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 994 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
{
"name": "jailed-function",
"version": "0.5.11",
"description": "Safely run untrusted code",
"keywords": ["sandbox", "jail", "vm", "low-code"],
"repository": "https://github.com/yosbelms/jailed-function.git",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"test": "jasmine",
"build": "tsc --sourceMap -d",
"watch": "tsc --sourceMap --watch",
"clean": "find src -type f \\( -name \"*.js\" -o -name \"*.js.map\" -o -name \"*.d.ts\" -o -name \"*.d.ts.map\" \\) | grep -v \"./node_modules\" | xargs rm",
"prepublish": "npm run clean && npm run test && npm run build",
"perf": "ts-node spec/perf.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.22.5",
"endent": "^2.1.0"
},
"devDependencies": {
"typescript": "^5.1.3",
"@types/babel__core": "^7.20.1",
"@types/jasmine": "^4.3.4",
"@types/node": "^20.3.1",
"delay": "^5.0.0",
"jasmine": "^5.0.2",
"ts-node": "^10.9.1"
}
}