forked from DFTi/strider-ssh-deploy
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "strider-ssh-deploy",
"version": "1.0.2",
"description": "Plugin for Strider-CD to deploy with SSH",
"main": "webapp.js",
"scripts": {
"test": "npm run lint && mocha -R spec --recursive test",
"tdd": "mocha -w -R spec --recursive test",
"lint": "eslint *.js lib",
"build": "browserify config/config.node.js -o config/config.js",
"watch": "watchify config/config.node.js -o config/config.js",
"coverage": "istanbul cover node_modules/.bin/_mocha --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-ssh-deploy.git"
},
"keywords": [
"strider",
"ssh",
"deploy",
"plugin"
],
"engines": {
"node": ">=4.2"
},
"author": "Keyvan Fatehi <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.0",
"ejs": "^2.4.1",
"lodash": "^4.13.1",
"progress-stream": "^1.2.0",
"ssh2": "^0.5.0",
"yarn": "^1.19.1"
},
"strider": {
"type": "job",
"id": "ssh_deploy",
"title": "SSH Deploy",
"worker": "worker.js",
"webapp": "webapp.js",
"icon": "icon.png",
"config": {
"controller": "SshDeployController"
}
},
"devDependencies": {
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"rimraf": "^2.2.8",
"sinon": "^4.0.0",
"sinon-chai": "^2.5.0",
"watchify": "^3.7.0"
}
}