-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.66 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
{
"name": "@ovhcloud/node-ovh",
"version": "3.0.2",
"description": "Official Node.js wrapper for the OVH APIs",
"homepage": "http://ovh.github.io/node-ovh",
"author": "OVH SAS",
"license": "MIT",
"keywords": [
"OVH",
"API",
"REST",
"api.ovh.com"
],
"files": [
"lib"
],
"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",
"simple-oauth2": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"commit-and-tag-version": "^12.4.1",
"istanbul": "latest",
"jshint": "latest",
"mocha": "latest",
"nock": "latest"
},
"scripts": {
"compile": "npx babel --presets @babel/preset-env lib/ovh.js --out-file lib/ovh.es5.js",
"compile:watch": "npx babel -w --presets @babel/preset-env lib/ovh.js --out-file lib/ovh.es5.js",
"release": "commit-and-tag-version",
"test": "node_modules/.bin/jshint lib/endpoints.js lib/ovh.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"
}
}