forked from AT-UI/at-ui-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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": "at-ui-style",
"version": "1.5.1",
"description": "The StyleSheet for AT-UI",
"scss": "src/index.scss",
"main": "css/at.css",
"style": "css/at.css",
"scripts": {
"build": "npm run build-clean && npm run copy && npm run build-scss && npm run build-scss-minify && npm run build-autoprefix",
"build-clean": "rimraf css",
"build-scss": "node-sass --output-style expanded --source-map true src/index.scss css/at.css",
"build-scss-minify": "node-sass --output-style compressed --source-map true src/index.scss css/at.min.css",
"build-autoprefix": "postcss --use autoprefixer -c postcss.json css/*.css -d css/",
"copy": "copyfiles -f src/fonts/*.* css/fonts/",
"prepublish": "npm run build",
"start": "npm run build-scss -- --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:o2team/at-ui-style.git"
},
"keywords": [
"at",
"at-ui",
"at-ui-style",
"css",
"scss",
"framework"
],
"author": "Koppt Ho <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.1",
"copyfiles": "^1.2.0",
"eslint-config-o2team": "^0.1.6",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.0",
"rimraf": "^2.6.1"
}
}