-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.76 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.76 KB
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
{
"name": "@ibm-cloud/secrets-manager",
"version": "2.1.0",
"description": "Client library for IBM Cloud Secrets Manager",
"repository": {
"type": "git",
"url": "https://github.com/IBM/secrets-manager-node-sdk"
},
"keywords": [
"ibm",
"secrets-manager"
],
"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/",
"prepare-publish": "npx @masterodin/publisher --dry-run --no-checks",
"dry-publish": "npm run build && npm run prepare-publish",
"publishDist": "npm run build && cd dist && npm publish --access public",
"jest": "jest",
"test": "npm run build && jest test/",
"test-unit": "npm run build && jest test/unit/",
"test-integration": "npm run build && jest test/integration",
"test-examples": "npm run build && jest examples/",
"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",
"report-coverage": "codecov",
"check-packages": "installed-check -e -d -v"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.4.10"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@masterodin/publisher": "^0.10.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/extend": "^3.0.1",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"axios": "1.15.0",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^34.6.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.1",
"installed-check": "^10.0.0",
"jest": "^30.0.0",
"nock": "^14.0.0",
"prettier": "^3.6.2",
"semantic-release": "^25.0.0",
"typedoc": "^0.28.14",
"typescript": "^5.4.5"
},
"overrides": {
"js-yaml": "^4.1.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/"
],
"testEnvironment": "node"
}
}