-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "44-517-bigdata-syllabus",
"version": "1.0.0",
"description": "Syllabus for 44-517 Big Data Course",
"keywords": [
"syllabus",
"bigdata",
"html",
"css",
"javascript",
"pwa",
"lighthouse-badges",
"codacy-badge",
"eslint",
"prettier",
"husky"
],
"homepage": "https://github.com/denisecase/44-517-bigdata-syllabus#readme",
"bugs": {
"url": "https://github.com/denisecase/44-517-bigdata-syllabus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denisecase/44-517-bigdata-syllabus.git"
},
"license": "MIT",
"author": "Denise Case",
"main": "service-worker.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prettier": "prettier --write .",
"sort": "npx npx sort-package-json",
"test": "npx lighthouse-badges --urls https://denisecase.github.io/44-517-bigdata-syllabus/ -o test_results",
"toc": "bash ./tools/gh-md-toc.sh ./README.md > ./tools/toc.md"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run sort && npm run lint-fix",
"pre-push": "echo not running tests"
}
},
"devDependencies": {
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-scanjs-rules": "latest",
"eslint-plugin-xss": "latest",
"husky": "latest",
"prettier": "latest",
"pretty-quick": "latest",
"remark-lint": "latest",
"sort-package-json": "latest"
}
}