This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 1.71 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
{
"name": "@modulist/css",
"description": "The Modulist is a CSS design system",
"version": "1.0.0-alpha.37",
"author": "SimplyStack",
"main": "index.js",
"style": "index.css",
"unpkg": "dist/modulist.css",
"files": [
"dist/*",
"src/*",
"index.css",
"index.js"
],
"scripts": {
"build": "node build.js",
"lint": "stylelint --fix 'src/**/*.css'",
"prettify": "prettier --write 'src/**/*.css'",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "bash scripts/deploy.sh",
"prepublish": "bash scripts/prepublish.sh"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.4.10",
"cssnano": "^4.1.10",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"postcss": "^7.0.14",
"postcss-banner": "^3.0.1",
"postcss-cli": "^6.1.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.6.0",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.1.0",
"vuepress": "^1.0.0-alpha.47"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.css": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"ignore": [
"**/dist/*.css"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplystack/modulist-css.git"
},
"bugs": {
"url": "https://github.com/simplystack/modulist-css/issues"
},
"homepage": "https://github.com/simplystack/modulist-css#readme"
}