-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 936 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "journalviewer",
"version": "0.0.1",
"description": "Journal Viewer for WoW",
"repository": {
"type": "git",
"url": "QartemisT/JournalViewer"
},
"license": "MIT",
"bugs": "https://github.com/QartemisT/JournalViewer/issues",
"authors": [
"QartemisT"
],
"devDependencies": {
"eslint": "^8.36.0",
"npm-run-all": "^4.1.5",
"stylelint": "^15.7.0",
"stylelint-config-standard": "^30.0.1"
},
"scripts": {
"lint:css": "stylelint \"./**/*.css\"",
"lint:js": "eslint . --cache --max-warnings=0",
"test": "npm-run-all --parallel lint:*"
},
"eslintConfig": {
"env": {
"browser": true,
"es2020": true
},
"globals": {
"sha1": true,
"diff_match_patch": true
},
"extends": "eslint:recommended"
},
"eslintIgnore": [
"**/*.min.js"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-descending-specificity": null,
"selector-id-pattern": null
}
}
}