forked from uPortal-Project/uPortal-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 876 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
{
"devDependencies": {
"@playwright/test": "~1.23.0",
"@typescript-eslint/eslint-plugin": "~5.30.0",
"@typescript-eslint/parser": "~5.30.0",
"eslint": "~8.20.0",
"prettier": "~2.7.0",
"type-coverage": "~2.22.0",
"typescript": "~4.7.0"
},
"scripts": {
"lint": "npm run lint:tsc && npm run lint:type-coverage && npm run lint:eslint",
"lint:tsc": "tsc",
"lint:type-coverage": "type-coverage",
"lint:eslint": "eslint tests",
"format": "prettier --write tests"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true
}
}