-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "tachyons",
"version": "4.9.0",
"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": {
"copy-files": "^0.1.0",
"immutable-css-cli": "^1.1.1",
"normalize.css": "^7.0.0",
"tachyons-modules": "^1.1.10",
"tachyons-cli": "^1.0.11",
"watch": "^1.0.2"
},
"scripts": {
"start": "npm run build:watch",
"mutations": "immutable-css src/tachyons/tachyons.css --strict",
"build": "npm run build:css && npm run build:minify",
"build:css": "tachyons src/tachyons/tachyons.css > css/main.css",
"build:minify": "tachyons src/tachyons/tachyons.css -m > css/main.min.css",
"build:watch": "watch \"npm run build\" ./src/"
}
}