-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "tachyons-border-widths",
"description": "Border width CSS module for Tachyons",
"version": "3.0.5",
"author": {
"name": "mrmrs",
"email": "[email protected]",
"url": "http://mrmrs.cc"
},
"style": "src/tachyons-border-widths.css",
"main": "src/tachyons-border-widths.css",
"files": [
"src",
"css"
],
"keywords": [
"tachyons",
"tachyons-css",
"css",
"border-width",
"border",
"widths"
],
"repository": "tachyons-css/tachyons-border-widths",
"license": "ISC",
"devDependencies": {
"tachyons-cli": "^1.3.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-border-widths.css > css/tachyons-border-widths.css",
"build:minify": "tachyons src/tachyons-border-widths.css --minify > css/tachyons-border-widths.min.css",
"build:docs": "tachyons src/tachyons-border-widths.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"
}
}