-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 805 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 805 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
{
"name": "code-execution-engine",
"version": "0.4.6",
"description": "A fast and secure Code-Execution-Engine in Javascript.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest tests/*.js",
"build": "tsc -p ."
},
"keywords": [
"Code",
"Execution",
"Engine",
"Runner"
],
"author": "Simon Köck",
"license": "MIT",
"devDependencies": {
"jest": "^26.6.3",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonkoeck/code-execution-engine.git"
},
"bugs": {
"url": "https://github.com/simonkoeck/code-execution-engine/issues"
},
"homepage": "https://github.com/simonkoeck/code-execution-engine#readme",
"dependencies": {
"@types/node": "^14.14.36"
}
}