-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.63 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.63 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@webdev-tools/css-flex-layout",
"description": "A tiny framework based on css flex box to manage grids without flood your html",
"version": "0.1.4",
"license": "MIT",
"scripts": {
"stylelint": "stylelint --fix \"src/*.scss\"",
"prebuild": "npm run stylelint && rimraf dist && mkdirp dist",
"build": "npm run sass-to-css && npm run clean-css",
"postbuild": "npm run clean-css-min",
"sass-to-css": "node-sass --linefeed lf --source-map true src/main.scss -o dist/",
"watch-sass": "npm run sass-to-css -- -wr",
"clean-css": "cleancss --level 2 --source-map --format beautify -o dist/main.css dist/main.css",
"clean-css-min": "cleancss --debug --source-map -o dist/main.min.css dist/main.css",
"preversion": "npm run build",
"version": "npm run changelog && git add .",
"postversion": "node tools/remove-scripts-to-publish.js && npm publish --access public && git push --follow-tags",
"postpublish": "git checkout -- package.json",
"commit": "git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
},
"lint-staged": {
"src/**/*.scss": [
"stylelint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"private": false,
"dependencies": {},
"devDependencies": {
"clean-css-cli": "^4.1.11",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^1.3.22",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mkdirp": "^0.5.1",
"node-sass": "^4.12.0",
"prompt": "^1.0.0",
"rimraf": "^2.6.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.1.0",
"validate-commit-msg": "^2.14.0"
},
"main": "dist/main.css",
"style": "dist/main.css",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/webdev-tools/css-flex-layout.git"
},
"keywords": [
"css",
"flexgrid",
"flex-grid",
"flex-layout",
"grid"
],
"author": "@webdev-tools",
"bugs": {
"url": "https://github.com/webdev-tools/css-flex-layout/issues"
},
"homepage": "https://github.com/webdev-tools/css-flex-layout#readme",
"engines": {
"node": ">=6.0.0"
}
}