-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "RelatedArticles",
"private": true,
"scripts": {
"selenium-daily": "npm run selenium-test -- --mochaOpts.grep @daily",
"selenium-test": "wdio tests/selenium/wdio.conf.js",
"test": "npx tsc && npm -s run lint && npm run test:unit",
"test:unit": "jest",
"lint": "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 .",
"lint:styles": "stylelint \"**/*.{less,css}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/"
},
"devDependencies": {
"@types/jquery": "3.5.6",
"@wdio/cli": "7.16.13",
"@wdio/junit-reporter": "7.16.13",
"@wdio/local-runner": "7.16.13",
"@wdio/mocha-framework": "7.16.13",
"@wdio/spec-reporter": "7.16.13",
"@wikimedia/codex": "1.16.0",
"@wikimedia/mw-node-qunit": "7.2.0",
"@wikimedia/types-wikimedia": "0.4.4",
"eslint-config-wikimedia": "0.28.2",
"grunt-banana-checker": "0.13.0",
"jest": "27.4.7",
"stylelint-config-wikimedia": "0.17.2",
"ts-jest": "27.1.3",
"typescript": "4.5.5",
"wdio-mediawiki": "2.6.0"
}
}