-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.66 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.66 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
{
"name": "ibm-networking-services",
"version": "0.40.0",
"description": "Node.js client library for IBM Cloud Networking Services",
"repository": {
"type": "git",
"url": "https://github.com/IBM/networking-node-sdk"
},
"keywords": [
"ibm"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"tslint:check": "tslint -p . -c ./tslint.json",
"lint": "npm run eslint:check && npm run tslint: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-integration-transit": "npm run build && jest test/integration/transit-gateway.v1.test.js",
"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"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@types/extend": "^3.0.4",
"@types/node": "^22.0.0",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.4.2"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"ansi-regex": "^6.0.1",
"axios": "^1.7.4",
"dotenv": "^17.0.0",
"eslint": "^9.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.1.3",
"highlight.js": "^11.9.0",
"installed-check": "^9.0.0",
"jest": "^30.0.0",
"marked": "^16.0.0",
"nock": "^14.0.0",
"node-notifier": "^10.0.1",
"prettier": "^3.2.5",
"semantic-release": "^25.0.0",
"set-value": "^4.1.0",
"tsc-publish": "^0.5.2",
"tslint": "^6.0.0",
"typedoc": "^0.28.0",
"typescript": "^5.4.2",
"yargs-parser": "^22.0.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}