-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.66 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.66 KB
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
{
"name": "jekyll-theme-material-docs",
"type": "module",
"description": "Jekyll theme for documentation 📝 built with material web components",
"repository": "fernandopasik/jekyll-theme-material-docs",
"homepage": "https://github.com/fernandopasik/jekyll-theme-material-docs",
"bugs": "https://github.com/fernandopasik/jekyll-theme-material-docs/issues",
"author": "Fernando Pasik <fernando@pasik.com.ar> (https://fernandopasik.com)",
"license": "MIT",
"private": true,
"scripts": {
"build": "jekyll build",
"clean": "del _site .jekyll-cache Gemfile.lock ./*.gem",
"format": "prettier --write .",
"format:check": "prettier --check .",
"gem:publish": "gem push $(gem build | grep File: | cut -c 9-)",
"lint": "eslint && stylelint '**/*.scss'",
"normalize": "cp -rf node_modules/normalize.css/normalize.css _sass/_normalize.scss && prettier _sass/_normalize.scss --write",
"prepare": "husky",
"start": "jekyll serve -o",
"verify": "npm run format:check && npm run lint && npm run build"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^1.19.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"prettier-plugin-pkg": "^0.21.2",
"prettier-plugin-sh": "^0.18.0",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-junit-formatter": "^0.2.2",
"stylelint-prettier": "^5.0.3"
}
}