-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 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
{
"name": "vcap_services",
"version": "0.3.4",
"description": "Parse and return service credentials from VCAP_SERVICES.",
"main": "index.js",
"keywords": [
"bluemix",
"vcap_services",
"cloud-foundry"
],
"author": "German Attanasio Ruiz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/germanattanasio/vcap_services.git"
},
"bugs": {
"url": "https://github.com/germanattanasio/vcap_services/issues"
},
"devDependencies": {
"coveralls": "^3.1.0",
"extend": "^3.0.2",
"istanbul": "~0.4.5",
"jshint": "^2.11.1",
"mocha": "^8.0.1"
},
"dependencies": {},
"scripts": {
"test": "jshint --exclude node_modules/ **/*.js && mocha --reporter spec --timeout 4000",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter spec --timeout 4000",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}
}