mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "tailwindcss",
|
|
"version": "0.1.0",
|
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"repository": "https://github.com/tailwindcss/tailwindcss.git",
|
|
"bugs": "https://github.com/tailwindcss/tailwindcss/issues",
|
|
"homepage": "https://tailwindcss.com",
|
|
"bin": {
|
|
"tailwind": "lib/cli.js"
|
|
},
|
|
"contributors": [
|
|
"Adam Wathan <adam.wathan@gmail.com>",
|
|
"Jonathan Reinink <jonathan@reinink.ca>",
|
|
"David Hemphill <davidlee.hemphill@gmail.com>"
|
|
],
|
|
"scripts": {
|
|
"prebabelify": "rimraf lib",
|
|
"babelify": "babel src --out-dir lib",
|
|
"prepare": "npm run babelify",
|
|
"build": "npm run babelify && babel-node src/build.js",
|
|
"watch": "nodemon -e js,css --watch src --exec 'babel-node src/build.js'",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.6.5",
|
|
"babel-core": "^6.7.2",
|
|
"babel-jest": "^20.0.3",
|
|
"babel-preset-env": "^1.0.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-2": "^6.24.1",
|
|
"babel-preset-stage-3": "^6.24.1",
|
|
"clean-css": "^4.1.9",
|
|
"jest": "^20.0.4",
|
|
"rimraf": "^2.6.1"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^2.11.0",
|
|
"fs-extra": "^4.0.2",
|
|
"lodash": "^4.17.4",
|
|
"nodemon": "^1.11.0",
|
|
"postcss": "^6.0.9",
|
|
"postcss-functions": "^3.0.0",
|
|
"stylefmt": "^6.0.0"
|
|
},
|
|
"browserslist": [
|
|
"> 1%"
|
|
],
|
|
"babel": {
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": "current"
|
|
}
|
|
}
|
|
],
|
|
"stage-2",
|
|
"stage-3",
|
|
"react"
|
|
]
|
|
}
|
|
}
|