-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "code-executor",
"version": "0.1.4",
"description": "A CLI/library to execute code against test cases in various languages and obtain relevant results.",
"main": "dist/src/CodeExecutor.js",
"keywords": [
"code-executor",
"executor",
"docker",
"sandbox",
"synchronization",
"parallel-execution",
"code-runner"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"test": "mocha --config test/.mocharc.json test/**/*.ts",
"lint": "eslint \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csivitu/code-executor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/csivitu/code-executor/issues"
},
"homepage": "https://github.com/csivitu/code-executor#readme",
"devDependencies": {
"@types/bull": "^3.14.2",
"@types/node": "^14.6.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@types/dockerode": "^2.5.34",
"@types/randomstring": "^1.1.6",
"@types/uuid": "^8.3.0",
"bull": "^3.18.0",
"del": "^6.0.0",
"dockerode": "^3.2.1",
"randomstring": "^1.1.5",
"uuid": "^8.3.0",
"winston": "^3.3.3"
}
}