-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 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
{
"name": "ibm-vpc",
"version": "0.30.1",
"description": "IBM Cloud VPC Node.js SDK",
"repository": {
"type": "git",
"url": "https://github.com/IBM/vpc-node-sdk"
},
"keywords": [
"ibm"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint:fix && npm run tslint:fix",
"build": "tsc && cp package.json 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-example": "npm run build && jest examples/ ",
"test-ci": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
"test-unit-ci": "jest --runInBand test/unit/",
"test-integration-ci": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"check-packages": "installed-check -e -d -v"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@types/node": "^18.19.80",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.4.11",
"uuid": "^9.0.0"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"axios": "1.15.0",
"dotenv": "^16.4.5",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.1",
"installed-check": "^9.3.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^2.3.0",
"semantic-release": "^24.2.3",
"tsc-publish": "^0.5.2",
"typescript": "~4.9.4"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}