-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·62 lines (62 loc) · 2.27 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
{
"name": "kss-scheibo",
"version": "2.3.2",
"description": "A custom template for the kss-node living styleguide.",
"main": "lib/index.js",
"types": "lib/types.d.ts",
"repository": "https://github.com/scheibome/kss-scheibo.git",
"license": "MIT",
"homepage": "https://kss-scheibo.scheibitz.com",
"author": "Thomas Scheibitz <npm@scheibitz.com> (https://www.scheibitz.com)",
"scripts": {
"clean": "rimraf docs",
"kss": "kss --config kss-scheibo.json",
"cname": "mkdirp docs -p && node .npm-scripts/cnameCreate.js",
"scss:demo": "sass --style=compressed --no-source-map source/scss:docs/kss-assets",
"css": "npm run kss && npm run tailwind && npm rum scss:demo",
"build": "npm run clean && npm run cname && npm run css && npm run kss && npm run sync:js && echo \"Please copy the 'kss_styleguide/kss-homepage.md' to 'README.md'\"",
"sync:js": "cp source/javascripts/main.js docs/kss-assets/main.js",
"browsersync": "browser-sync start --port 8856 --server docs --browser firefox --files docs/**/*",
"tailwind": "postcss kss_styleguide/scheibo-template/kss-assets/kss.css -o kss_styleguide/scheibo-template/kss-assets/kss.min.css",
"webhint-1": "hint http://localhost:8856/section-1.html",
"webhint-2": "hint http://localhost:8856/section-2.html",
"webhint-3": "hint http://localhost:8856/section-3.html",
"webhint": "npm-run-all webhint-1 webhint-2 webhint-3"
},
"dependencies": {
"chokidar": "^3.5.3",
"create-html": "github:scheibome/create-html#1cbbdd8",
"fs-extra": "^11.1.0",
"kss": "github:scheibome/kss-node#d668c6c",
"pug": "^3.0.2"
},
"devDependencies": {
"@hint/configuration-accessibility": "^2.0.15",
"@hint/configuration-web-recommended": "^8.2.6",
"autoprefixer": "^10.2.6",
"browser-sync": "^2.26.7",
"cssnano": "^6.0.1",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"hint": "^7.0.1",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^10.0.0",
"rimraf": "^5.0.0",
"sass": "^1.52.1",
"tailwindcss": "^3.0.24"
},
"keywords": [
"kss",
"kss-node",
"styleguide",
"css",
"scss",
"template",
"theme",
"living styleguide",
"LSG"
]
}