-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
30 lines (30 loc) · 927 Bytes
/
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
{
"name": "@alphardex/aqua.css",
"version": "1.7.0",
"description": "A delicate CSS framework for humans.",
"main": "index.js",
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output dist/aqua.css dist/aqua.css",
"build-cleancss": "cleancss -o dist/aqua.min.css dist/aqua.css",
"build-clean": "rimraf dist",
"build-sass": "node-sass --output-style expanded --source-map true src/aqua.scss dist/aqua.css"
},
"repository": {
"type": "git",
"url": "git@github.com:alphardex/aqua.css.git"
},
"keywords": [
"ui",
"aqua.css"
],
"author": "alphardex",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.7.4",
"clean-css-cli": "^4.3.0",
"node-sass": "^5.0.0",
"postcss-cli": "^7.1.0",
"rimraf": "^3.0.2"
}
}