-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "stdout-collector",
"version": "0.1.0",
"description": "Route stdout between computers and terminals",
"main": "source/index.js",
"scripts": {
"format": "prettier --write '{source,test}/**/*.js'",
"precommit": "lint-staged",
"test": "npm run test:format",
"test:format": "prettier-check '{source,test}/**/*.js'"
},
"bin": {
"stdsend": "./source/index-client.js",
"stdrecv": "./source/index-server.js"
},
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/stdout-collector.git"
},
"keywords": [
"stdout",
"route",
"terminal"
],
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/stdout-collector/issues"
},
"homepage": "https://github.com/perry-mitchell/stdout-collector#readme",
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"express": "^4.16.3",
"minimist": "^1.2.0",
"node-fetch": "^2.1.1",
"pad": "^2.0.3",
"uuid": "^3.2.1"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"prettier-check": "^2.0.0"
}
}