-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.62 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
80
{
"name": "ibm-networking-services",
"version": "0.35.3",
"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": {
"@types/extend": "^3.0.4",
"@types/node": "^20.11.28",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.0.1"
},
"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": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"ansi-regex": "^6.0.1",
"axios": "^1.7.4",
"dotenv": "^16.4.5",
"eslint": "^9.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-prettier": "^5.1.3",
"highlight.js": "^11.9.0",
"installed-check": "^8.0.1",
"jest": "^29.7.0",
"marked": "^12.0.1",
"nock": "^13.5.4",
"node-notifier": "^10.0.1",
"prettier": "^3.2.5",
"semantic-release": "^23.0.3",
"set-value": "^4.1.0",
"tsc-publish": "^0.5.2",
"tslint": "^5.20.1",
"typedoc": "^0.27.0",
"typescript": "^5.4.2",
"yargs-parser": "^21.1.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}