-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.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": "tachyons-display-verbose",
"version": "1.0.3",
"style": "tachyons-display-verbose.css",
"homepage": "http://github.com/tachyons-css/tachyons-display-verbose",
"description": "Performance based css module.",
"keywords": [
"postcss",
"display",
"css",
"design",
"ui"
],
"repository": {
"type": "git",
"url": "http://github.com/tachyons-css/tachyons-display-verbose.git"
},
"bugs": {
"url": "https://github.com/tachyons-css/tachyons-display-verbose/issues",
"email": "[email protected]"
},
"author": {
"name": "mrmrs",
"email": "[email protected]",
"url": "http://mrmrs.cc"
},
"license": "MIT",
"devDependencies": {
"tachyons-cli": "^1.3.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-display-verbose.css > css/tachyons-display-verbose.css",
"build:minify": "tachyons src/tachyons-display-verbose.css --minify > css/tachyons-display-verbose.min.css",
"build:docs": "tachyons src/tachyons-display-verbose.css --generate-docs --package=../../package.json > readme.md",
"build": "npm run build:css && npm run build:minify && npm run build:docs",
"build:watch": "watch 'npm run build' ./src"
}
}