This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.55 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
51
52
53
54
55
56
57
{
"name": "@upcloud/upcloud",
"version": "1.0.2",
"description": "The JavaScript SDK for UpCloud's API",
"homepage": "https://github.com/UpCloudLtd/upcloud-javascript-api",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UpCloudLtd/upcloud-javascript-api.git"
},
"bugs": {
"url": "https://github.com/UpCloudLtd/upcloud-javascript-api/issues"
},
"keywords": ["upcloud", "cloud", "wrapper", "api", "babel", "es6"],
"main": "src/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha --recursive test",
"format":
"prettier --single-quote --trailing-comma all --write \"{src,test}/**/*.js\"",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"browser": {
"fs": false
},
"dependencies": {
"superagent": "3.7.0"
},
"devDependencies": {
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "3.0.0",
"cross-env": "^5.1.3",
"expect.js": "~0.3.1",
"istanbul": "^0.4.5",
"mocha": "~5.0.0",
"mocha-lcov-reporter": "1.3.0",
"mocha-parallel-tests": "^1.2.10",
"nyc": "^11.4.1",
"prettier": "^1.10.2",
"sinon": "4.2.0"
},
"nyc": {
"require": ["babel-register", "babel-polyfill"],
"reporter": ["lcov", "text"],
"sourceMap": false,
"instrument": false,
"exclude": [
"src/model/*.js",
"src/api/ServerApi.js",
"src/ApiClient.js",
"src/index.js"
]
}
}