-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.89 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
{
"name": "theme",
"version": "2.1.0",
"description": "Jekyll theme for doublegreat.dev",
"main": "index.js",
"scripts": {
"js": "npm run prettier && npm run eslint && npm run uglify",
"prettier": "prettier --write \"assets/*.js\"",
"eslint": "eslint \"assets/*.js\"",
"uglify": "uglifyjs assets/navigation.js -m -o _includes/nav.min.js",
"test": "npm run js && npm run stylelint && bundle exec jekyll build",
"pretty-quick": "pretty-quick",
"stylelint": "npm run browser-list && stylelint \"_sass/**/*.scss\" --fix && npm run tokenize",
"lint": "npm run pretty-quick && npm run stylelint",
"tokenize": "scss-to-json \"_sass/_variables.scss\" > \"_data/variables.json\"",
"local": "npm run js && npm run stylelint && bundle exec jekyll serve --watch",
"browser-list": "echo Browser support list: && npx browserslist",
"browser-update": "npx browserslist@latest --update-db",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/double-great/theme.git"
},
"author": "Double Great",
"license": "MIT",
"bugs": {
"url": "https://github.com/double-great/theme/issues"
},
"homepage": "https://github.com/double-great/theme#readme",
"devDependencies": {
"@crocsx/scss-to-json": "^3.0.0",
"@double-great/stylelint-a11y": "^2.0.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-xss": "^0.1.12",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-no-unsupported-browser-features": "^6.1.0",
"stylelint-scss": "^5.0.1",
"uglify-js": "3.17.4"
}
}