This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
101 lines (101 loc) · 1.83 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
{
"name": "connect-openui5",
"version": "0.10.3",
"description": "Connect middleware for OpenUI5",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"connect",
"server",
"middleware"
],
"main": "index.js",
"engines": {
"node": ">= 10",
"npm": ">= 5"
},
"scripts": {
"lint": "eslint ./",
"unit": "mocha test/*.js",
"coverage": "nyc npm run unit",
"test": "npm run lint && npm run coverage && npm run depcheck",
"preversion": "npm test",
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md 0.8.0.. && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version",
"depcheck": "depcheck"
},
"files": [
"index.js",
"lib",
"LICENSE.txt",
"LICENSES/**",
".reuse/**"
],
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/**",
"test/**",
".eslintrc.js"
],
"check-coverage": true,
"statements": 75,
"branches": 55,
"functions": 90,
"lines": 80,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "git@github.com:SAP/connect-openui5.git"
},
"dependencies": {
"async": "^3.2.4",
"cookie": "^0.4.2",
"extend": "^3.0.2",
"glob": "^7.2.3",
"http-proxy": "^1.18.1",
"less-openui5": "^0.11.6",
"set-cookie-parser": "^2.6.0"
},
"devDependencies": {
"connect": "^3.7.0",
"depcheck": "^1.4.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"serve-static": "^1.15.0"
}
}