This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "@ahaui/css",
"version": "2.0.5",
"description": "Aha Design System - CSS",
"style": "dist/index.min.css",
"sass": "scss/index.scss",
"files": [
"dist/*.{css,map}",
"scss/**/*.scss",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "yarn lint && yarn build",
"build": "yarn clean && yarn compile && yarn prefix && yarn minify",
"clean": "yarn del dist/*",
"compile": "node-sass --importer node_modules/node-sass-import --output-style compact --precision 6 scss/ -o dist/",
"prefix": "postcss --config config/postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"minify": "yarn minify-index && yarn minify-utilities",
"minify-index": "cleancss --level 1 --format breakWith=lf --output dist/index.min.css dist/index.css",
"minify-utilities": "cleancss --level 1 --format breakWith=lf --output dist/utilities.min.css dist/utilities.css",
"lint": "stylelint \"**/*.scss\" --cache --cache-location .cache/.stylelintcache --rd",
"prepack": "clean-package -rm devDependencies scripts",
"postpack": "clean-package restore"
},
"author": "Got It, Inc.",
"homepage": "https://github.com/gotitinc/aha-css#readme",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gotitinc/aha-css.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"autoprefixer": "9.6.1",
"clean-css-cli": "4.3.0",
"clean-package": "^1.0.1",
"del-cli": "3.0.1",
"node-sass": "4.13.1",
"node-sass-import": "2.0.1",
"postcss-cli": "6.1.2",
"stylelint": "^13.8.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"dependencies": {}
}