-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 917 Bytes
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
{
"name": "GlobalWatchlist",
"private": true,
"scripts": {
"test": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:styles && npm run lint:i18n",
"lint:eslint": "eslint --cache .",
"lint:styles": "stylelint --cache \"**/*.{css,less}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"selenium-daily": "npm run selenium-test",
"selenium-test": "wdio tests/selenium/wdio.conf.js",
"doc": "npm run doc:jsdoc",
"doc:jsdoc": "jsdoc -c jsdoc.json"
},
"devDependencies": {
"@wdio/cli": "9.18.4",
"@wdio/junit-reporter": "9.21.0",
"@wdio/local-runner": "9.23.0",
"@wdio/mocha-framework": "9.15.0",
"@wdio/spec-reporter": "9.20.0",
"eslint-config-wikimedia": "0.32.3",
"grunt-banana-checker": "0.13.0",
"jsdoc": "4.0.5",
"jsdoc-wmf-theme": "1.2.0",
"stylelint-config-wikimedia": "0.18.0",
"wdio-mediawiki": "5.1.0"
},
"eslintIgnore": [
"vendor/**"
]
}