-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
124 lines (124 loc) · 3.78 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ibm-cloud-sdk-core",
"version": "5.1.0",
"description": "Core functionality to support SDKs generated with IBM's OpenAPI SDK Generator.",
"main": "./index.js",
"typings": "./es/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/IBM/node-sdk-core.git"
},
"keywords": [
"ibm",
"sdk",
"openapi",
"core"
],
"author": "IBM Corp.",
"contributors": [
{
"name": "Dustin Popp",
"email": "dustinpopp@ibm.com"
},
{
"name": "Phil Adams",
"email": "phil_adams@us.ibm.com"
}
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/IBM/node-sdk-core/issues"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^7.0.1",
"@masterodin/publisher": "^0.10.0",
"@microsoft/api-documenter": "^7.24.1",
"@microsoft/api-extractor": "^7.43.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/extend": "^3.0.4",
"@types/file-type": "~5.2.1",
"@types/isstream": "^0.1.0",
"@types/mime-types": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^34.6.3",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^29.7.0",
"nock": "^13.5.4",
"npm-run-all": "4.1.5",
"package-json-reducer": "1.0.18",
"prettier": "~2.3.0",
"semantic-release": "^23.0.7",
"typescript": "~4.9.4"
},
"dependencies": {
"@types/debug": "^4.1.12",
"@types/node": "~10.14.19",
"@types/tough-cookie": "^4.0.0",
"axios": "1.7.4",
"camelcase": "^6.3.0",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"extend": "3.0.2",
"file-type": "16.5.4",
"form-data": "4.0.0",
"isstream": "0.1.2",
"jsonwebtoken": "^9.0.2",
"mime-types": "2.1.35",
"retry-axios": "^2.6.0",
"tough-cookie": "^4.1.3"
},
"overrides": {
"semver": "^7.5.3",
"micromatch": "4.0.8"
},
"browser": {
"./auth/utils/read-credentials-file": "./auth/utils/read-credentials-file.browser"
},
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -fr node_modules sdk-test-utilities/node_modules",
"commitmsg": "commitlint -E GIT_PARAMS",
"eslint:config": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check",
"fix": "npm run eslint:fix",
"jest": "jest",
"test": "jest test/unit/",
"test-travis": "jest --runInBand test/unit/",
"build:clean": "rimraf dist",
"build": "npm-run-all build:code build:doc copy:pkg",
"build:code": "npm-run-all -p build:umd build:es",
"build:umd": "tsc",
"build:es": "tsc -p tsconfig-es6.json",
"build:api": "api-extractor run --local",
"build:md": "api-documenter markdown -i temp --output-folder build/docs",
"build:doc": "npm-run-all build:api build:md copy:doc",
"copy:doc": "mkdir -p dist/docs && cp \"temp/ibm-cloud-sdk-core.api.json\" dist/docs",
"copy:pkg": "package-json-reducer -s \"config devDependencies directories scripts jestSonar jest\" -o ./dist/package.json package.json",
"postversion": "publisher --no-checks --dry-run",
"all": "npm-run-all build test lint",
"semantic-release": "semantic-release"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
}
}