-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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": "iotwhi-api-client",
"version": "2.0.1",
"license": "IPL-1.0",
"author": "IBM",
"description": "Client for IoT Worker Ingishts API.",
"engines": {
"node": ">=14.0.0"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ibm-watson-iot/iotwhi-api-client.git"
},
"bugs": {
"url": "https://github.com/ibm-watson-iot/iotwhi-api-client/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/*.js",
"linter": "./node_modules/.bin/eslint lib/** test/**",
"postpublish": "git tag -a v$npm_package_version -m 'Version: $npm_package_version' && git push --tags"
},
"dependencies": {
"bluebird": "~3.5.0",
"pluralize": "~6.0.0",
"request": "~2.87.0",
"request-promise": "~4.2.1"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-node": "^4.2.1",
"mocha": "~5.0.0",
"nock": "~9.1.6",
"node-mocks-http": "~1.6.6",
"should": "~13.2.1",
"xunit-file": "~1.0.0"
}
}