-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@supple-kit/supple-css",
"version": "5.7.1",
"description": "Reliable and testable Sass framework. Fluid, Variable, supple if you will",
"main": "index.scss",
"repository": "https://github.com/supple-kit/supple-css.git",
"author": "Bram Smulders <[email protected]>",
"funding": [
{
"type": "github",
"url": "https://www.github.com/sponsors/bramsmulders"
},
{
"type": "paypal",
"url": "https://www.paypal.me/smuldersbram/EUR"
}
],
"license": "MIT",
"keywords": [
"supple",
"supple kit",
"css",
"scss",
"itcss",
"grid",
"framework",
"bem"
],
"scripts": {
"test": "npm run lint && npm run build && npm run gzip",
"lint": "stylelint \"**/*.scss\"",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"gzip": "gzip-size test/css/index.css",
"postcss": "postcss test/css/**/*.css --replace",
"sass": "sass index.scss:test/css/index.css test/scss/test.scss:test/css/test.css --no-source-map",
"build": "npm run sass && npm run postcss",
"serve": "browser-sync start --server --files 'test/css/*.css, ./**/*.html' --index 'test.html'",
"watch": "nodemon -e scss -x \"npm run test\"",
"start": "concurrently 'npm run serve' 'npm run watch'"
},
"nano-staged": {
"**/*": "prettier --write",
"*.scss": "stylelint"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@supple-kit/prettier-config": "^1.0.1",
"@supple-kit/stylelint-config-supple": "^4.0.1",
"autoprefixer": "^10.4.13",
"browser-sync": "^2.27.11",
"concurrently": "^7.6.0",
"cssnano": "^5.1.14",
"glob": "^8.1.0",
"gzip-size-cli": "^5.1.0",
"nano-staged": "^0.8.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"sass": "^1.58.0",
"simple-git-hooks": "^2.8.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^3.0.0"
}
}