-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1013 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1013 Bytes
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
{
"name": "servicekit",
"version": "3.1.0",
"description": "An assortment of useful service wrappers with uniform initialization and simplified client calls.",
"main": "index.js",
"scripts": {
"pretest": "npm install",
"test": "node_modules/.bin/mocha",
"lint": "node_modules/.bin/eslint *.js recast wit test",
"coverage": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"docs": "node_modules/.bin/jsdoc -r -c jsdoc.conf.json ."
},
"author": "Ali Lokhandwala (ali@huestones.co.uk)",
"license": "Apache-2.0",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"request": "^2.87.0",
"watson-developer-cloud": "^3.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/wallali/servicekit"
},
"devDependencies": {
"eslint": "^4.14.0",
"istanbul": "^0.4.4",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nock": "^9.1.5",
"sinon": "^4.1.3"
},
"engines": {
"node": ">=4.0"
}
}