forked from IBM/node-sdk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.05 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.05 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
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
125
126
127
128
129
130
131
132
133
{
"name": "ibm-cloud-sdk-core",
"version": "4.0.3",
"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": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
},
{
"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.19.27",
"@microsoft/api-extractor": "^7.33.7",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/debug": "^4.1.7",
"@types/extend": "^3.0.1",
"@types/lodash.isempty": "^4.4.6",
"@types/mime-types": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"dependency-lint": "~5.0.1",
"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.3.1",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"object.assign": "~4.1.0",
"package-json-reducer": "^1.0.18",
"prettier": "~2.3.0",
"rimraf": "^3.0.2",
"semantic-release": "19.0.3",
"typescript": "~4.9.4"
},
"dependencies": {
"@types/file-type": "~5.2.1",
"@types/isstream": "^0.1.0",
"@types/node": "~10.14.19",
"@types/tough-cookie": "^4.0.0",
"axios": "1.2.1",
"camelcase": "^5.3.1",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"expect": "^26.1.0",
"extend": "^3.0.2",
"file-type": "16.5.4",
"form-data": "^2.3.3",
"isstream": "~0.1.2",
"jsonwebtoken": "^9.0.0",
"lodash.isempty": "^4.4.0",
"mime-types": "~2.1.18",
"object.omit": "~3.0.0",
"object.pick": "~1.3.0",
"retry-axios": "^2.6.0",
"semver": "^6.2.0",
"tough-cookie": "^4.0.0"
},
"browser": {
"./auth/utils/read-credentials-file": "./auth/utils/read-credentials-file.browser",
"./lib/sdk-test-helpers": "./lib/sdk-test-helpers.browser"
},
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rm -fr 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",
"lint: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"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
}
}