tachyons-skylark/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "tachyons",
2016-09-20 00:25:31 +00:00
"version": "4.5.2",
2016-02-25 07:40:33 +00:00
"description": "Functional CSS for humans",
"author": "mrmrs",
2016-09-07 15:26:27 +00:00
"style": "css/tachyons.min.css",
"main": "css/tachyons.css",
"files": [
"css",
"src"
],
2016-01-23 05:05:26 +00:00
"repository": "tachyons-css/tachyons",
"keywords": [
"css",
"oocss",
2016-09-15 20:13:37 +00:00
"postcss",
2016-07-01 14:14:15 +00:00
"functional css",
"design",
"responsive",
"performance"
],
"license": "MIT",
"devDependencies": {
"copy-files": "^0.1.0",
2016-02-20 07:21:04 +00:00
"immutable-css-cli": "^1.1.1",
2016-07-12 08:20:55 +00:00
"normalize.css": "^4.2.0",
"tachyons-cli": "^1.0.8",
2016-08-10 21:14:18 +00:00
"tachyons-modules": "^1.1.8",
2016-08-16 17:55:22 +00:00
"watch": "^0.19.2"
2016-02-26 05:24:13 +00:00
},
"contributors": [
{
"name": "adam morse",
"email": "hi@mrmrs.cc"
},
{
"name": "john otander",
"url": "http://johnotander.com"
}
],
"scripts": {
2016-07-14 09:45:34 +00:00
"start": "npm run build:watch",
2016-02-26 05:24:13 +00:00
"mutations": "immutable-css src/tachyons.css --strict",
2016-07-14 09:45:34 +00:00
"build": "npm run build:css && npm run build:minify",
2016-03-10 19:12:55 +00:00
"build:css": "tachyons src/tachyons.css > css/tachyons.css",
"build:minify": "tachyons src/tachyons.css -m > css/tachyons.min.css",
2016-07-14 09:45:34 +00:00
"build:watch": "watch 'npm run build' ./src/"
2016-02-26 05:24:13 +00:00
}
}