-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "@cryb/borealis",
"version": "1.0.7",
"description": "The official CSS framework for Cryb",
"repository": "https://github.com/crybapp/borealis.git",
"author": "JeDaYoshi <[email protected]>",
"license": "MIT",
"main": "dist/borealis.min.css",
"unpkg": "dist/borealis.min.css",
"style": "borealis/css/borealis.min.css",
"scripts": {
"dev": "nodemon -e sass --ignore dist/ --exec \"yarn build-sass\"",
"build": "yarn build-clean && yarn build-sass && yarn build-autoprefix && yarn build-cleancss",
"build-sass": "node-sass --output-style expanded --source-map true src/_all.sass dist/borealis.css",
"build-autoprefix": "postcss --use autoprefixer --map false --output dist/borealis.css dist/borealis.css",
"build-cleancss": "cleancss -o dist/borealis.min.css dist/borealis.css",
"build-clean": "rimraf dist",
"deploy": "bash scripts/deploy.sh"
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"clean-css-cli": "^4.3.0",
"husky": "^3.1.0",
"node-sass": "^4.12.0",
"nodemon": "^2.0.2",
"postcss-cli": "^6.1.3",
"rimraf": "^2.7.1"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
]
}