-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
executable file
·87 lines (87 loc) · 2.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@ibm-cloud/platform-services",
"version": "0.67.0",
"description": "Node.js client library for IBM Cloud Platform Services",
"repository": {
"type": "git",
"url": "https://github.com/IBM/platform-services-node-sdk"
},
"keywords": [
"ibm"
],
"author": "IBM Corp.",
"scripts": {
"clean": "rm -fr node_modules",
"checknpm": "npm --version",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint:fix",
"build": "tsc && cp package.json dist/",
"prepublishOnly": "npm run build",
"postversion": "publisher --no-checks --dry-run",
"test-single": "jest --verbose=true --silent=false",
"jest": "jest",
"test": "npm run build && npm run lint && jest test/",
"test-unit": "npm run build && jest test/unit/",
"test-integration": "npm run build && jest --expand test/integration/",
"test-travis": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
"test-unit-travis": "jest --runInBand test/unit/",
"test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"check-packages": "installed-check -e -d -v",
"all": "npm run test-unit && npm run lint",
"semantic-release": "semantic-release"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node": "^12.0.8",
"extend": "3.0.2",
"ibm-cloud-sdk-core": "^5.1.0"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@masterodin/publisher": "^0.10.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.24.0",
"dotenv": "^8.2.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^34.6.3",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.1",
"installed-check": "^2.2.0",
"jest": "^29.5.0",
"nock": "^13.2.4",
"prettier": "^2.3.0",
"semantic-release": "^23.1.1",
"typescript": "^4.9.4",
"uuid": "^8.2.0"
},
"overrides": {
"micromatch": "^4.0.8",
"braces": "^3.0.3"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/"
],
"testEnvironment": "node",
"verbose": false,
"silent": false
}
}