-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "digitalocean",
"version": "1.2.1",
"author": "Phillip Baker <phillbaker@retrodict.com>",
"description": "nodejs wrapper for digitalocean v2 api",
"main": "./lib/digitalocean",
"repository": "phillbaker/digitalocean-node",
"keywords": [
"wrapper",
"api",
"v2",
"digital ocean",
"digitalocean",
"droplet"
],
"scripts": {
"test": "mocha --bail --recursive --reporter dot",
"clean": "rm -r dist/*",
"build:js": "browserify lib/digitalocean.js -o dist/digitalocean.js --standalone 'digitalocean'",
"build": "mkdir -p dist && npm run build:js && npm run doc",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"release": "git push --follow-tags && npm publish",
"release:patch": "npm version patch -m 'Bump version to %s'",
"release:minor": "npm version minor -m 'Bump version to %s'",
"release:major": "npm version major -m 'Bump version to %s'",
"doc": "jsdoc lib/ --configure jsdoc.conf.json"
},
"dependencies": {
"bluebird": "^3.0",
"deep-extend": ">=0.5.1",
"request": "^2.68"
},
"devDependencies": {
"bower": ">= 0.0.0",
"browserify": "^13.0.0",
"chai": "~1.10.0",
"chai-shallow-deep-equal": "^1.4.0",
"jsdoc": "3.4.0",
"mocha": "~2.1.0",
"mocha-jshint": "^2.3.1",
"nock": "9.1.0"
},
"engines": {
"node": ">= 4",
"npm": ">= 2.13.1"
},
"tonicExampleFilename": "examples/make_droplet.js",
"license": "MIT"
}