-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
101 lines (101 loc) · 1.96 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": "less-openui5",
"version": "0.11.6",
"description": "Build OpenUI5 themes with Less.js",
"author": {
"name": "SAP SE",
"email": "[email protected]",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"less",
"less.js",
"theme"
],
"main": "lib/index.js",
"engines": {
"node": "^20.11.0 || >=22.0.0",
"npm": ">= 8"
},
"scripts": {
"lint": "eslint ./",
"unit": "mocha test/*.js test/lib/**",
"unit-debug": "mocha --inspect --inspect-brk test/*.js test/lib/**",
"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.7.0.. && git add CHANGELOG.md",
"prepublishOnly": "git push --follow-tags",
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version",
"depcheck": "depcheck --ignores clean-css,source-map"
},
"files": [
"CONTRIBUTING.md",
"lib/**",
"LICENSES/**",
".reuse/**"
],
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/**",
"test/**",
".eslintrc.js",
"lib/thirdparty/**"
],
"check-coverage": true,
"statements": 95,
"branches": 85,
"functions": 100,
"lines": 95,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "[email protected]:SAP/less-openui5.git"
},
"dependencies": {
"@adobe/css-tools": "^4.4.1",
"clone": "^2.1.2",
"mime": "^1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"depcheck": "^1.4.7",
"eslint": "^9.15.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^50.5.0",
"globals": "^15.12.0",
"graceful-fs": "^4.2.11",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"sinon": "^16.1.3"
}
}