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 34
/
Copy pathpackage.json
107 lines (107 loc) · 1.99 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
106
107
{
"name": "grunt-openui5",
"version": "0.18.4",
"description": "Grunt tasks around OpenUI5",
"author": {
"name": "SAP SE",
"email": "[email protected]",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"gruntplugin"
],
"engines": {
"node": ">= 10",
"npm": ">= 5"
},
"scripts": {
"lint": "eslint ./",
"unit": "grunt",
"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 v0.16.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": [
"tasks",
"LICENSE.txt",
"LICENSES/**",
".reuse/**"
],
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/**",
"test/**",
".eslintrc.js",
"tmp/**"
],
"check-coverage": true,
"statements": 85,
"branches": 75,
"functions": 90,
"lines": 85,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "[email protected]:SAP/grunt-openui5.git"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"dependencies": {
"async": "^3.2.4",
"connect-inject": "^0.4.0",
"connect-openui5": "^0.10.3",
"cors": "^2.8.5",
"less-openui5": "^0.11.6",
"maxmin": "^3.0.0",
"pretty-data": "^0.40.0",
"serve-static": "^1.15.0",
"slash": "^3.0.0",
"terser": "^5.17.4",
"urljoin": "^0.1.5"
},
"devDependencies": {
"depcheck": "^1.4.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^8.4.0",
"nyc": "^15.1.0"
}
}