-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "strider-ssh-deploy",
"version": "0.1.0",
"description": "Plugin for Strider-CD to deploy with SSH",
"main": "webapp.js",
"scripts": {
"test": "mocha -R spec --recursive test",
"tdd": "mocha -w -R spec --recursive test",
"build": "browserify controller.js -o config/config.js",
"watch": "watchify controller.js -o config/config.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-ssh-deploy.git"
},
"keywords": [
"strider",
"ssh",
"deploy",
"plugin"
],
"author": "Keyvan Fatehi <keyvanfatehi@gmail.com>",
"license": "ISC",
"dependencies": {
"bluebird": "^2.1.1",
"lodash": "^2.4.1",
"npmd-pack": "^1.0.0",
"progress-stream": "^0.5.0",
"ssh2": "^0.2.25"
},
"strider": {
"type": "job",
"id": "ssh_deploy",
"title": "SSH Deploy",
"worker": "worker.js",
"webapp": "webapp.js",
"icon": "icon.png",
"config": {
"controller": "SshDeployController"
}
},
"devDependencies": {
"browserify": "^4.1.10",
"chai": "^1.9.1",
"mocha": "^1.20.1",
"rimraf": "^2.2.8",
"sinon-chai": "^2.5.0",
"watchify": "^0.10.2"
}
}