-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.24 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
{
"name": "@ibm-cloud/continuous-delivery",
"version": "3.0.0",
"description": "IBM Cloud Continuous Delivery Node.js SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/continuous-delivery-node-sdk.git"
},
"keywords": [
"ibm"
],
"publishConfig": {
"access": "public"
},
"author": "IBM Corp.",
"scripts": {
"all": "npm run test-unit && npm run lint",
"build": "tsc && cp package.json dist/",
"check-packages": "installed-check -e -d -v",
"clean": "rm -rf node_modules",
"jest": "jest",
"lint": "eslint",
"lint-fix": "eslint --fix",
"prepublishOnly": "npm run build",
"postversion": "publisher --no-checks --dry-run",
"semVerDryRun": "npx --package semantic-release --package @semantic-release/changelog --package @semantic-release/git semantic-release -d",
"test": "npm run build && npm run lint && jest test/",
"test-unit": "npm run build && jest --runInBand test/unit/",
"test-integration": "npm run build && jest test/integration",
"test-examples": "npm run build && jest examples/"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"extend": "3.0.2",
"ibm-cloud-sdk-core": "^5.4.11"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.3",
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@masterodin/publisher": "^0.10.0",
"@types/extend": "^3.0.4",
"dotenv": "^17.0.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jsdoc": "^63.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"installed-check": "^10.0.0",
"jest": "^30.0.0",
"nock": "^14.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.1"
},
"overrides": {
"braces": "^3.0.3",
"micromatch": "^4.0.8"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/",
"<rootDir>/node_modules/"
],
"coverageProvider": "v8",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}