forked from IBM/node-sdk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.95 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
{
"name": "ibm-cloud-sdk-core",
"version": "2.3.0",
"description": "Core functionality to support SDKs generated with IBM's OpenAPI 3 SDK Generator.",
"main": "./dist/index",
"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"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IBM/node-sdk-core/issues"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^7.0.1",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"codecov": "~3.0.2",
"dependency-lint": "~5.0.1",
"eslint": "~5.0.0",
"eslint-config-google": "~0.9.1",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-node": "~6.0.1",
"eslint-plugin-prettier": "~2.6.1",
"jest": "^24.6.0",
"object.assign": "~4.1.0",
"prettier": "~1.13.5",
"semantic-release": "^15.13.24",
"tsc-publish": "^0.5.2",
"tslint": "~5.10.0",
"tslint-config-prettier": "~1.13.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/extend": "~3.0.0",
"@types/file-type": "~5.2.1",
"@types/isstream": "^0.1.0",
"@types/jest": "^24.0.23",
"@types/node": "~10.14.19",
"axios": "^0.18.0",
"axios-cookiejar-support": "^0.5.1",
"camelcase": "^5.3.1",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"extend": "~3.0.2",
"file-type": "^7.7.1",
"form-data": "^2.3.3",
"isstream": "~0.1.2",
"jsonwebtoken": "^8.5.1",
"lodash.isempty": "^4.4.0",
"mime-types": "~2.1.18",
"object.omit": "~3.0.0",
"object.pick": "~1.3.0",
"semver": "^6.2.0",
"ts-jest": "^24.2.0"
},
"browser": {
"./auth/utils/read-credentials-file": "./auth/utils/read-credentials-file.browser"
},
"engines": {
"node": ">=10"
},
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"tslint:config": "tslint-config-prettier-check ./tslint.json",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"tslint:check": "tslint -p . -c ./tslint.json",
"eslint:config": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check && npm run tslint:check",
"lint:fix": "npm run eslint:fix && npm run tslint:fix",
"jest": "jest",
"test": "jest test/unit/",
"test-travis": "jest --runInBand test/unit/",
"report-coverage": "codecov",
"build": "tsc",
"postversion": "tsc-publish --no-checks --dry-run"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
}
}