-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
67 lines (67 loc) · 1.64 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": "sierra-library",
"version": "3.5.0",
"description": "The smallest and lightest scss library",
"main": "lib/index.scss",
"repository": {
"type": "git",
"url": "https://github.com/sierra-library/sierra.git"
},
"keywords": [
"scss",
"library",
"framework",
"responsive",
"sass",
"sierra",
"micro",
"open source",
"lightweight",
"frontend"
],
"author": {
"name": "Sierra-library",
"url": "https://github.com/sierra-library"
},
"licenses": [
{
"type": "GNU General Public License v2.0."
}
],
"private": false,
"devDependencies": {
"@commitlint/cli": "7",
"@commitlint/config-conventional": "7",
"autoprefixer": "8",
"commitizen": "3",
"cpx": "1",
"cz-conventional-changelog": "2",
"husky": "1",
"node-sass": "4",
"nodemon": "1",
"np": "3",
"postcss-cli": "2"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"scripts": {
"publish": "npm run build",
"build": "npm run build:prod && npm run build:dev && cpx 'src/**/*.*' ./lib",
"build:prod": "node-sass --include-path scss src/index.scss dist/sierra.min.css --output-style compressed && postcss --use autoprefixer dist/sierra.min.css -d dist/",
"build:dev": "node-sass --include-path scss src/index.scss dist/sierra.css && postcss --use autoprefixer dist/sierra.css -d dist/",
"co": "git cz",
"watch": "nodemon -e scss -x \"npm run build\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}