-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "ibm-appconfiguration-node-sdk",
"version": "0.8.0-beta.2",
"description": "IBM Cloud App Configuration Node.js SDK",
"main": "./lib/AppConfiguration.js",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"test-unit": "jest --silent test/unit/",
"test-integration": "jest test/integration/"
},
"author": "IBM",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IBM/appconfiguration-node-sdk"
},
"dependencies": {
"chalk": "^4.1.0",
"dns-socket": "^4.2.2",
"events": "^3.2.0",
"ibm-cloud-sdk-core": "^5.0.1",
"murmurhash": "^2.0.0",
"path": "^0.12.7",
"websocket": "^1.0.33"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/"
],
"testEnvironment": "node",
"verbose": false,
"silent": false
}
}