-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.67 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
{
"name": "styleguide-example",
"version": "1.0.0",
"description": "An example of living style guide",
"keywords": [
"styleguide",
"css",
"kss"
],
"author": "Victor Cazanave <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VictorCazanave/styleguide-example.git"
},
"bugs": {
"url": "https://github.com/VictorCazanave/styleguide-example/issues"
},
"homepage": "https://github.com/VictorCazanave/styleguide-example#readme",
"scripts": {
"dev:watch": "chokidar src/* src/**/* template/* --command 'npm run build' --initial --verbose",
"dev:sync": "browser-sync start --config bs-config.js",
"dev": "run-p dev:*",
"lint": "stylelint src/**/*.scss template/*.scss",
"build:style:css": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/main.scss docs/main.css",
"build:style:prefix": "postcss docs/main.css --replace --use autoprefixer",
"build:style": "run-s build:style:*",
"build:styleguide:css": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js template/styleguide.scss docs/styleguide.css",
"build:styleguide:kss": "kss --config kss-config.json",
"build:styleguide": "run-s build:styleguide:*",
"build": "run-s build:*"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"browser-sync": "^2.26.7",
"chokidar-cli": "^2.1.0",
"kss": "^3.0.0",
"node-sass": "^4.13.1",
"node-sass-package-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"sass-rem": "^2.0.1",
"stylelint": "^13.2.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.14.2"
}
}