-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 909 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
{
"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 \"**/*.{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": "7.30.1",
"@wdio/junit-reporter": "7.29.1",
"@wdio/local-runner": "7.30.1",
"@wdio/mocha-framework": "7.26.0",
"@wdio/spec-reporter": "7.29.1",
"eslint-config-wikimedia": "0.28.2",
"grunt-banana-checker": "0.13.0",
"jsdoc": "4.0.4",
"jsdoc-wmf-theme": "1.0.1",
"stylelint-config-wikimedia": "0.18.0",
"wdio-mediawiki": "2.6.0"
},
"eslintIgnore": [
"vendor/**"
]
}