-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.25 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
41
42
43
44
45
{
"name": "tachyons-skins",
"version": "4.1.1",
"style": "src/tachyons-skins.css",
"main": "src/tachyons-skins.css",
"homepage": "http://github.com/tachyons-css/tachyons-skins",
"description": "Performance based css module.",
"keywords": [
"colors",
"design",
"css",
"tachyons",
"postcss"
],
"repository": {
"type": "git",
"url": "http://github.com/tachyons-css/tachyons-skins.git"
},
"bugs": {
"url": "https://github.com/tachyons-css/tachyons-skins/issues",
"email": "[email protected]"
},
"author": {
"name": "mrmrs",
"email": "[email protected]",
"url": "http://mrmrs.cc"
},
"license": "ISC",
"devDependencies": {
"tachyons-cli": "^1.3.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-skins.css > css/tachyons-skins.css",
"build:minify": "tachyons src/tachyons-skins.css --minify > css/tachyons-skins.min.css",
"build:docs": "tachyons src/tachyons-skins.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"
},
"metadata": {
"category": "theming",
"isCore": true
}
}