-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "tachyons-background-position",
"description": "Tachyons module for setting background position of images.",
"version": "1.0.4",
"author": {
"name": "mrmrs",
"email": "[email protected]",
"url": "http://mrmrs.cc"
},
"style": "src/tachyons-background-position.css",
"files": [
"src",
"css"
],
"keywords": [
"tachyons",
"tachyons-css",
"css",
"base"
],
"repository": "tachyons-css/tachyons-background-position",
"license": "MIT",
"devDependencies": {
"tachyons-cli": "^1.3.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-background-position.css > css/tachyons-background-position.css",
"build:minify": "tachyons src/tachyons-background-position.css --minify > css/tachyons-background-position.min.css",
"build:docs": "tachyons src/tachyons-background-position.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"
}
}