-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1023 Bytes
/
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
{
"private": true,
"scripts": {
"test:compatibility": "./scripts/testCompatibility.sh"
},
"devDependencies": {
"@starptech/prettyhtml": "^0.10.0",
"cypress": "^5.3.0",
"diff": ">=3.5.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"lodash": ">=4.17.13",
"lodash.template": ">=4.5.0",
"mixin-deep": ">=1.3.2",
"meow": "8.0.0",
"prettier": "^1.15.3",
"set-value": ">=2.0.1",
"sirv-cli": "^0.4.4"
},
"prettier": {
"singleQuote": true,
"semi": true
},
"changelog": {
"repo": "SAP/luigi",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Added",
"bug": ":bug: Fixed",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/hooks/apply-formatters.sh && ./scripts/hooks/remove-test-prefixes.sh && ./scripts/hooks/generate-docu.sh && ./scripts/hooks/prevent-illegal-characters.sh"
}
}
}