generated from cs130-w21/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
64
65
66
67
68
69
70
71
72
{
"name": "junknet",
"version": "0.2.0",
"description": "Zero-config distributed parallel processing.",
"license": "Apache-2.0",
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"main": "dist/src",
"types": "dist/src",
"bin": {
"junknetd": "dist/bin/server.js",
"junknet-make": "dist/bin/controller.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cs130-w21/1.git"
},
"scripts": {
"docs": "typedoc",
"prepack": "git clean -fX dist && tsc --project tsconfig.dist.json",
"start": "tsnd bin/server.ts",
"cli": "ts-node bin/controller.ts",
"fix": "eslint --fix .",
"postfix": "prettier -w .",
"pretest": "tsc --noEmit",
"test": "jest",
"posttest": "eslint . && prettier -c .",
"test:local": "npm run test -- --runInBand --selectProjects unit"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/bonjour": "^3.5.8",
"@types/dockerode": "^3.2.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.21",
"@types/ssh2": "^0.5.46",
"@types/tar": "^4.0.4",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.11",
"eslint-plugin-unicorn": "^28.0.2",
"jest": "^26.6.3",
"jest-mock-extended": "^1.0.10",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typed-emitter": "^1.3.1",
"typedoc": "^0.20.18",
"typescript": "^4.1.3"
},
"dependencies": {
"bonjour": "^3.5.0",
"dockerode": "^3.2.1",
"fp-ts": "^2.9.5",
"heap-js": "^2.1.4",
"io-ts": "^2.2.14",
"lodash": "^4.17.21",
"ssh2": "^0.8.9",
"tar": "^6.1.0",
"yargs": "^16.2.0"
}
}