-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"version": "4.0.0",
"name": "ssh-deploy-release",
"description": "Deploy release on remote server over ssh.",
"author": {
"name": "La Haute Société",
"url": "http://www.lahautesociete.com",
"email": "[email protected]"
},
"repository": "https://github.com/la-haute-societe/ssh-deploy-release",
"license": "MIT",
"main": "dist/ssh-deploy-release.js",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"dependencies": {
"any-shell-escape": "^0.1.1",
"archiver": "^3.0.3",
"async": "^3.1.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cli-progress": "^3.3.1",
"extend": "^3.0.2",
"filesize": "^4.1.2",
"human-format": "^0.10.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"ora": "^3.4.0",
"ssh2": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"sinon": "^7.3.2"
},
"scripts": {
"prepare": "npm run build",
"test": "mocha --require @babel/register tests/**/*.spec.js",
"build": "npx babel src --out-dir dist"
}
}