-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tachyons",
"version": "4.6.2",
"description": "Functional CSS for humans",
"author": "mrmrs",
"style": "css/tachyons.min.css",
"main": "css/tachyons.css",
"files": [
"css",
"src"
],
"repository": "tachyons-css/tachyons",
"keywords": [
"css",
"oocss",
"postcss",
"functional css",
"design",
"responsive",
"performance"
],
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.18.8",
"copy-files": "^0.1.0",
"immutable-css-cli": "^1.1.1",
"normalize.css": "^4.2.0",
"tachyons-cli": "^1.0.10",
"tachyons-modules": "^1.1.8",
"uncss": "^0.14.1",
"watch": "^1.0.1"
},
"contributors": [
{
"name": "adam morse",
"email": "[email protected]"
},
{
"name": "john otander",
"url": "http://johnotander.com"
}
],
"scripts": {
"start": "npm run build:watch & npm run serve",
"mutations": "immutable-css src/tachyons.css --strict",
"build": "npm run build:css && npm run build:minify",
"build:css": "tachyons src/tachyons.css > css/tachyons.css",
"build:minify": "tachyons src/tachyons.css -m > css/tachyons.min.css",
"build:watch": "watch 'npm run build' ./src/",
"serve": "browser-sync start -s -f 'index.html, css/tachyons.css' --no-open --no-notify",
"browser-sync": "browser-sync",
"uncss": "uncss",
"uncss-tachyons": "npm run uncss http://localhost:3000/index.html > css/tachyons.uncss.css",
"uncss-original": "npm run uncss http://localhost:3000/original.html > css/style.uncss.css"
}
}