-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "@foamfactoryio/shipout",
"version": "0.1.9",
"description": "A lightweight tool for deploying node applications from within a source repository",
"main": "dist/index.js",
"files": [
"dist",
"bin"
],
"bin": "bin/shipout.js",
"scripts": {
"start": "yarn build && node bin/shipout.js",
"build": "tsc",
"changelog:generate": "gitmoji-changelog --output CHANGELOG.md",
"clean": "rimraf dist && mkdir dist",
"test": "jest",
"test:coverage": "jest --coverage",
"test:runserver": "tsx test/run_test_server --verbose",
"prepublishOnly": "yarn build"
},
"keywords": [
"deploy",
"server",
"application",
"deployment",
"script",
"ssh"
],
"author": {
"name": "Scott Johnson",
"email": "[email protected]"
},
"shipout": {
"keep_releases": -1
},
"license": "MPL-2.0",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node-ssh": "^7.0.1",
"@types/ssh2": "^0.5.48",
"babel-jest": "^27.0.6",
"babel-plugin-root-import": "^6.5.0",
"jest": "27.0.0",
"jest-serial-runner": "^1.1.0",
"jest-wrap": "^1.7.0",
"lodash": "^4.17.21",
"test-sshdng": "^0.0.5",
"ts-jest": "^27.0.7",
"tsx": "^3.12.1",
"typescript": "^4.4.4"
},
"dependencies": {
"colors": "^1.4.0",
"mkdirp": "^1.0.4",
"moment": "^2.26.0",
"node-ssh": "^13.0.0",
"pretty-logger": "^0.1.2",
"rimraf": "^3.0.2",
"ssh2": "^1.4.0",
"tar": "^6.1.11"
},
"volta": {
"node": "18.14.2",
"yarn": "1.22.19"
}
}