forked from miraheze/CreateWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"private": true,
"scripts": {
"test": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:styles": "stylelint \"**/*.{less,css}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"minify:svg": "svgo --config=.svgo.config.js --quiet --recursive --folder modules/icons/"
},
"devDependencies": {
"eslint-config-wikimedia": "0.30.0",
"grunt-banana-checker": "0.13.0",
"stylelint-config-idiomatic-order": "10.0.0",
"stylelint-config-wikimedia": "0.18.0",
"svgo": "3.3.2"
},
"peerDependencies": {
"postcss-less": "6.0.0"
}
}