-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 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
39
40
{
"name": "tachyons-borders",
"version": "3.0.5",
"style": "src/tachyons-borders.css",
"main": "src/tachyons-borders.css",
"description": "Performance-first css module for styling borders.",
"keywords": [
"tachyons",
"tachyons-css",
"tachyons-borders",
"css"
],
"files": [
"src",
"css"
],
"repository": "tachyons-css/tachyons-borders",
"author": {
"name": "mrmrs",
"email": "[email protected]",
"url": "http://mrmrs.cc"
},
"license": "ISC",
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-borders.css > css/tachyons-borders.css",
"build:minify": "tachyons src/tachyons-borders.css --minify > css/tachyons-borders.min.css",
"build:docs": "tachyons src/tachyons-borders.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"
},
"devDependencies": {
"tachyons-cli": "^1.3.2",
"watch": "^1.0.2"
},
"metadata": {
"category": "theming",
"isCore": true
}
}