-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "@sap_oss/alert-notification-client",
"version": "1.14.0",
"description": "SAP Alert Notification service for SAP BTP Node.js API client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run test && npm run lint && tsc",
"lint": "eslint --ext .ts src/**",
"lint:fix": "eslint --ext .ts --fix src/**"
},
"author": "SAP Alert Notification service for SAP BTP Development Team",
"email": "sap.cloud.platform.alert.notification@groups.sap.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP/alert-notification-node-client"
},
"keywords": [
"alerts",
"notifications",
"client",
"promise",
"node"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"axios": ">=1.15.0",
"jks-js": "^1.1.0",
"follow-redirects": ">=1.15.6"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@types/jest": "^26.0.14",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^10.4.2",
"prettier": "^3.2.4",
"semver-regex": "^3.1.4",
"ts-jest": "^29.1.4",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}