-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
84 lines (84 loc) · 1.84 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "44-563-webapps-syllabus",
"version": "1.0.0",
"description": "Northwest Missouri State University 44-563 Syllabus, a progressive web app",
"keywords": [
"syllabus",
"webapps",
"html",
"css",
"javascript",
"pwa",
"lighthouse-badges",
"codacy-badge",
"eslint",
"prettier",
"husky"
],
"homepage": "https://www.nwmissouri.edu/csis/directory/case.htm",
"repository": {
"type": "git",
"url": "https://github.com/denisecase/44-563-webapps-syllabus"
},
"license": "MIT",
"author": "Denise Case",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prettier": "prettier --write .",
"sort": "npx sort-package-json",
"test": "npx lighthouse-badges --urls https://denisecase.github.io/44-563-webapps-syllabus/ -o test_results"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run sort && npm run lint-fix",
"pre-push": "echo not running tests"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"browser": true,
"es2020": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"extends": [
"airbnb-base"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
],
"import/extensions": 0
},
"globals": {
"found": true,
"google": true,
"workbox": true
}
},
"devDependencies": {
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "latest",
"husky": "latest",
"prettier": "latest",
"prettier-eslint": "latest",
"pretty-quick": "latest",
"sort-package-json": "latest"
}
}