-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "deployment",
"version": "0.2.3",
"description": "Continuous deployment for the masses. Download the latest version of your GitHub package, run tests and deploy to the specified directory. Run a deployment server to launch deployments from the internet, and integrate with GitHub easily. Includes an API to fire deployment from an external source.",
"homepage": "https://github.com/alexfernandez/deployment",
"contributors": ["Alex Fernández <[email protected]>"],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/alexfernandez/deployment"
},
"dependencies": {
"prototypes": "*",
"async": "*",
"testing": "*",
"emailjs": "~0.3.16",
"optimist": "~0.6.0",
"log": "*"
},
"keywords" : ["deployment", "npm", "continuous deployment", "deploy", "test", "continuous delivery", "deployment server"],
"engines": {
"node": "*"
},
"bin": {
"deployment-server": "bin/server.js",
"deployment-run": "bin/deployment.js"
},
"scripts": {
"test": "node test.js"
},
"private": false
}