-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
79 lines (79 loc) · 2.42 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
{
"name": "@ibm-cloud/ibm-key-protect",
"version": "0.4.1",
"description": "IBM Cloud Key Protect Node SDK",
"repository": {
"type": "git",
"url": "https://github.com/IBM/keyprotect-nodejs-client"
},
"keywords": [
"ibm",
"key-management-service"
],
"author": "IBM Corp.",
"scripts": {
"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/ && cp README.md dist/",
"prepublishOnly": "npm run build",
"postversion": "tsc-publish --no-checks --dry-run",
"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 test/integration",
"test-unit-travis": "jest --runInBand test/unit/",
"test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"report-coverage": "codecov",
"check-packages": "installed-check -e -d -v"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">20.8.1"
},
"dependencies": {
"@ibm-cloud/platform-services": "^0.63.1",
"@types/node": "^20.11.5",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.0.1"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@eslint/js": "^9.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"axios": "^1.7.4",
"codecov": "^3.8.2",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"installed-check": "^8.0.1",
"jest": "^29.7.0",
"nock": "^13.5.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"tsc-publish": "^0.5.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}