-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "lentur",
"version": "0.1.0",
"description": "Responsive CSS grid frameword using Flexbox",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/agraris/lentur.git"
},
"keywords": [
"css",
"framework",
"responsive",
"flex",
"grid",
"modern"
],
"author": "Fajar Setya",
"license": "MIT",
"bugs": {
"url": "https://github.com/agraris/lentur/issues"
},
"homepage": "https://github.com/agraris/lentur#readme",
"scripts": {
"css": "npm run css:lint && npm run css:compile && npm run css:prefix && npm run css:minify",
"css:compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/lentur.scss dist/lentur.css",
"css:lint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache",
"css:minify": "csso dist/lentur.css --output dist/lentur.min.css --source-map dist/lentur.min.css.map",
"css:prefix": "postcss --use autoprefixer --map true --output dist/lentur.css dist/lentur.css",
"watch": "npm run watch-css",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css:lint && npm run css:compile\""
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"autoprefixer": "^9.8.5",
"csso-cli": "^3.0.0",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"postcss-cli": "^7.1.1",
"stylelint": "^13.6.1",
"stylelint-config-twbs-bootstrap": "^2.0.3"
},
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Edge >= 16",
"iOS >= 10",
"Safari >= 10",
"Android >= 6",
"not Explorer <= 11"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}