forked from ovh/node-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.42 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
{
"name": "ovh",
"version": "2.0.3",
"description": "Official Node.js wrapper for the OVH APIs",
"homepage": "http://ovh.github.io/node-ovh",
"author": "Vincent Giersch <vincent.giersch@ovh.net>",
"license": "MIT",
"keywords": [
"OVH",
"API",
"REST",
"api.ovh.com"
],
"main": "./lib/ovh.es5.js",
"repository": {
"type": "git",
"url": "https://github.com/ovh/node-ovh.git"
},
"bugs": {
"url": "https://github.com/ovh/node-ovh/issues"
},
"dependencies": {
"async": "0.9.x",
"bluebird": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"istanbul": "latest",
"jshint": "latest",
"mocha": "latest",
"nock": "latest"
},
"scripts": {
"test": "node_modules/.bin/jshint lib/endpoints.js lib/handler-maker.js lib/ovh.es6.js tests && npm run-script test-cov && npm run-script test-without-proxies",
"test-without-proxies": "node node_modules/.bin/mocha -g Proxy -i --reporter spec --ui exports tests/*.js",
"test-cov": "node ./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec --ui exports --check-leaks tests/*.js",
"test-integration": "node node_modules/mocha/bin/_mocha tests/integration/*.js && node node_modules/.bin/mocha -g Proxy -i --reporter spec --ui exports tests/integration/*.js",
"compile": "babel -w --presets es2015 lib/ovh.es6.js --out-file lib/ovh.es5.js"
}
}