-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "deploytool",
"version": "0.2.2",
"description": "A Node tool for deploying things like code to places like remote servers and services",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bmcclure/deploytool"
},
"author": {
"name": "Ben McClure",
"email": "[email protected]",
"url": "http://benmcclure.com"
},
"files": [
"index.js",
"lib",
"plugin"
],
"extensions": {
"deploytool:deployment": {
"git-push": "./plugin/git-push"
},
"deploytool:notify": {
"console": "./plugin/console"
},
"deploytool:source": {
"directory": "./plugin/directory",
"git": "./plugin/git"
},
"deploytool:versioning": {
"git": "./plugin/git"
}
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"keywords": [],
"dependencies": {
"bluebird": "^3.4.1",
"child-process-promise": "^2.0.3",
"eraro": "^0.4.1",
"is-stream": "^1.1.0",
"js-plugins": "0.0.3",
"object-assign": "^4.1.0",
"vinyl": "^1.1.1"
},
"devDependencies": {
"mocha": "^2.5.3"
}
}