forked from matt-major-zz/do-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "do-wrapper",
"version": "3.10.0",
"description": "Node.js Wrapper for Digital Ocean API v2",
"author": "Matt Major",
"homepage": "https://github.com/matt-major/do-wrapper",
"repository": {
"type": "git",
"url": "https://github.com/matt-major/do-wrapper.git"
},
"main": "./dist/do-wrapper.js",
"scripts": {
"build": "gulp compile && npm run doc",
"precommit": "npm t",
"test": "jshint src/*.js && ./node_modules/mocha/bin/mocha",
"doc": "./node_modules/.bin/jsdoc src/*.js -d doc/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-major/do-wrapper/issues"
},
"keywords": [
"digital ocean",
"digitalocean",
"droplet",
"cloud",
"wrapper",
"api",
"babel",
"es6"
],
"dependencies": {
"request": "2.74.0"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "3.9.1",
"gulp-babel": "5.2.1",
"gulp-uglify": "1.5.1",
"husky": "0.10.2",
"jsdoc": "3.4.0",
"jsdox": "^0.4.9",
"jshint": "2.8.0",
"mocha": "^2.4.5",
"should": "^8.2.2"
}
}