-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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": "3.0.0",
"name": "deployator",
"description": "Deploy releases over SSH with rsync, archive ZIP / TAR, symlinks, SCP",
"author": {
"name": "La Haute Société",
"url": "http://www.lahautesociete.com",
"email": "[email protected]"
},
"repository": "https://github.com/la-haute-societe/deployator",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"deployator": "dist/index.js"
},
"scripts": {
"prepare": "npm run build",
"test": "mocha --require @babel/register tests/**/*.spec.js",
"build": "babel src --out-dir dist && chmod +x dist/index.js"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
},
"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",
"chai": "^4.2.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"supports-color": "^7.0.0",
"tmp": "^0.1.0"
},
"dependencies": {
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"extend": "^3.0.2",
"make-dir": "^3.0.0",
"ssh-deploy-release": "^4.0.0",
"yargs": "^13.3.0"
}
}