-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "tachyons-background-overlays",
"version": "1.1.0",
"description": "Tachyons module for adding overlays to background images",
"main": "css/tachyons-background-overlays.css",
"style": "css/tachyons-background-overlays.css",
"repository": "lowmess/tachyons-background-overlays",
"keywords": [
"tachyons",
"tachyons-css"
],
"files": [
"src",
"css"
],
"author": {
"name": "Alec Lomas",
"email": "[email protected]",
"url": "http://lowmess.com"
},
"license": "MIT",
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-background-overlays.css > css/tachyons-background-overlays.css",
"build:minify": "tachyons src/tachyons-background-overlays.css --minify > css/tachyons-background-overlays.min.css",
"build:docs": "tachyons src/tachyons-background-overlays.css --generate-docs -a --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.0.11",
"watch": "^1.0.2"
}
}