-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.76 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.76 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
{
"name": "@ibm-cloud/event-notifications-node-admin-sdk",
"version": "0.25.0",
"description": "IBM Cloud Event Notifications Admin Node.js SDK",
"repository": {
"type": "git",
"url": "https://github.com/IBM/event-notifications-node-admin-sdk"
},
"keywords": [
"ibm"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint: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-examples": "npm run build && jest examples/",
"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",
"all": "npm run test-unit && npm run lint"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@types/node": "^20.12.7",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.4.10"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"axios": "1.14.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"installed-check": "^9.3.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.2.5",
"semantic-release": "^25.0.3",
"tsc-publish": "^0.5.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/"
],
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/IBM/event-notifications-node-admin-sdk/issues"
},
"homepage": "https://github.com/IBM/event-notifications-node-admin-sdk#readme",
"main": ".eslintrc.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
}
}