-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
105 lines (105 loc) · 3.11 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/cloudant",
"version": "0.11.0",
"description": "IBM Cloudant Node.js SDK",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/IBM/cloudant-node-sdk"
},
"keywords": [
"IBM",
"Cloudant",
"database",
"client",
"SDK",
"official"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --ext .ts,.js --fix",
"eslint:check": "eslint . --ext .ts,.js --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint:fix",
"copymeta": "[ -d 'dist' ] && cp package.json LICENSE README.md dist/",
"build": "tsc",
"postbuild": "npm run copymeta",
"version": "bump-my-version bump patch --allow-dirty --new-version $npm_package_version && git add README.md .bumpversion.toml",
"postversion": "npm run copymeta",
"jest": "jest --runInBand",
"test": "npm run build && npm run lint && jest --runInBand test/",
"test-unit": "npm run build && jest --runInBand test/unit/",
"test-integration": "npm run build && jest --runInBand test/integration",
"test-ci": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
"test-unit-ci": "jest --runInBand test/unit/",
"test-integration-ci": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"typedoc": "typedoc"
},
"license": "Apache-2.0",
"engines": {
"node": "^18 || ^20 || ^22"
},
"dependencies": {
"@types/node": "18.19.68",
"ibm-cloud-sdk-core": "5.1.0"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@types/extend": "3.0.4",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"dotenv": "16.4.7",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nock": "13.5.6",
"prettier": "3.4.2",
"sinon": "19.0.2",
"ts-jest": "29.2.5",
"typedoc": "0.27.5",
"typescript": "5.7.2"
},
"peerDependencies": {
"@types/tough-cookie": "^4.0.0",
"extend": "^3.0.2",
"tough-cookie": "^4.0.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testResultsProcessor": "jest-junit"
},
"jest-junit": {
"suiteName": "Generated unit tests",
"outputDirectory": "./junitreports/",
"outputName": "junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
},
"files": [
"/index.js",
"/index.js.map",
"/index.d.ts",
"/auth",
"/cloudant",
"/lib"
]
}