-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.27 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "socketshare",
"version": "1.3.1",
"description": "Create a temporary fileserver to share files over the internet.",
"scripts": {
"test": "babel-tape-runner ./tests/**/*.js | faucet",
"start": "npm run build && node bin/app",
"build": "babel src --out-dir bin",
"publish": "babel src --out-dir bin && npm publish",
"local": "babel-node src/app.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls -v",
"coveralls": "nyc babel-tape-runner ./tests/**.*.js && nyc report --reporter=text-lcov | coveralls -v",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/theamazingfedex/socketshare"
},
"author": "Daniel Wood",
"license": "MIT",
"bugs": {
"url": "https://github.com/theamazingfedex/socketshare/issues"
},
"homepage": "https://github.com/theamazingfedex/socketshare#README",
"bin": {
"socketshare": "bin/app.js"
},
"preferGlobal": true,
"dependencies": {
"7zip-bin": "4.1.0",
"content-disposition": "0.5.0",
"copy-paste": "1.1.3",
"destroy": "1.0.4",
"express": "4.16.4",
"external-ip": "2.1.1",
"minimist": "1.1.3",
"node-7z": "1.0.1",
"on-finished": "2.3.0",
"tinyurl": "1.0.8"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "6.2.x",
"babel-preset-es2015": "6.3.x",
"babel-tape-runner": "2.0.0",
"blue-tape": "0.1.x",
"coveralls": "3.0.3",
"faucet": "0.0.1",
"husky": "^1.3.1",
"nyc": "13.3.0",
"semantic-release": "^15.13.3",
"touch": "3.1.0"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"socketshare",
"share",
"files",
"local",
"server",
"external",
"cli",
"terminal",
"cmd",
"node"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}