-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
52
53
54
55
56
57
{
"author": "Martin Wawrusch <martin@wawrusch.com> (http://martinatsunset.com)",
"name": "provisioner",
"description": "Collection of useful utilities when you programmatically need to provision sites on digital ocean, do some dns magic with dnsimple.com and host some data on mongohq.com. This is not intended as a general purpose library, and it might change at will, although we honor semantic versioning. Use at your own risk.",
"version": "0.2.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/codedoctor/node-provisioner.git"
},
"bin": {},
"directories": {
"lib": "./lib",
"test": "./test"
},
"keywords": [
"mongohq",
"provisioning"
],
"scripts": {
"prepublish": "node_modules/.bin/codo -i ./src -o ./docs;node_modules/.bin/grunt coffee",
"test": "node_modules/.bin/grunt coffee;NODE_ENV=test node_modules/.bin/mocha --timeout 10000 -R spec test/*.coffee",
"docs": "node_modules/.bin/codo -i ./src -o ./docs"
},
"engines": {},
"dependencies": {
"underscore": ">=1.5.2",
"digitalocean.node" : "0.0.1",
"mongohq" : "0.3.1",
"dnsimple" : "0.1.4",
"github" : "0.1.12",
"async" : "0.2.9"
},
"devDependencies": {
"coffee-script": "1.6.3",
"should": "2.0.2",
"mocha": "1.13.0",
"codo": "1.9.0",
"grunt": "0.4.1",
"grunt-cli": "0.1.9",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-watch": "0.5.3",
"grunt-release": "0.6.0",
"grunt-contrib-coffee": "0.7.0",
"nconf" : "0.6.8"
},
"bugs": {
"url": "http://github.com/codedoctor/node-provisioner/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/codedoctor/node-provisioner/raw/master/LICENSE"
}
]
}