UNPKG

2.23 kBJSONView Raw
1{
2 "name": "tailwindcss",
3 "version": "0.7.4",
4 "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5 "license": "MIT",
6 "main": "lib/index.js",
7 "style": "dist/tailwind.css",
8 "repository": "https://github.com/tailwindcss/tailwindcss.git",
9 "bugs": "https://github.com/tailwindcss/tailwindcss/issues",
10 "homepage": "https://tailwindcss.com",
11 "bin": {
12 "tailwind": "lib/cli.js"
13 },
14 "contributors": [
15 "Adam Wathan <adam.wathan@gmail.com>",
16 "Jonathan Reinink <jonathan@reinink.ca>",
17 "David Hemphill <davidlee.hemphill@gmail.com>"
18 ],
19 "scripts": {
20 "prebabelify": "rimraf lib",
21 "babelify": "babel src --out-dir lib",
22 "prepare": "npm run babelify && babel-node src/build.js",
23 "style": "eslint .",
24 "test": "jest && eslint ."
25 },
26 "devDependencies": {
27 "babel-cli": "^6.6.5",
28 "babel-core": "^6.7.2",
29 "babel-jest": "^20.0.3",
30 "babel-preset-env": "^1.0.0",
31 "babel-preset-react": "^6.24.1",
32 "babel-preset-stage-2": "^6.24.1",
33 "babel-preset-stage-3": "^6.24.1",
34 "clean-css": "^4.1.9",
35 "eslint": "^4.10.0",
36 "eslint-config-postcss": "^2.0.2",
37 "eslint-config-prettier": "^2.7.0",
38 "eslint-plugin-prettier": "^2.3.1",
39 "jest": "^23.6.0",
40 "prettier": "^1.7.4",
41 "rimraf": "^2.6.1"
42 },
43 "dependencies": {
44 "autoprefixer": "^9.4.5",
45 "bytes": "^3.0.0",
46 "chalk": "^2.4.1",
47 "css.escape": "^1.5.1",
48 "fs-extra": "^4.0.2",
49 "lodash": "^4.17.5",
50 "node-emoji": "^1.8.1",
51 "perfectionist": "^2.4.0",
52 "postcss": "^7.0.11",
53 "postcss-functions": "^3.0.0",
54 "postcss-js": "^2.0.0",
55 "postcss-nested": "^4.1.1",
56 "postcss-selector-parser": "^5.0.0",
57 "pretty-hrtime": "^1.0.3",
58 "strip-comments": "^1.0.2"
59 },
60 "browserslist": [
61 "> 1%"
62 ],
63 "babel": {
64 "presets": [
65 [
66 "env",
67 {
68 "targets": {
69 "node": "6.9.0"
70 }
71 }
72 ],
73 "stage-2",
74 "stage-3",
75 "react"
76 ]
77 },
78 "jest": {
79 "setupTestFrameworkScriptFile": "<rootDir>/jest/customMatchers.js",
80 "testPathIgnorePatterns": [
81 "<rootDir>/__tests__/fixtures/"
82 ]
83 },
84 "engines": {
85 "node": ">=6.9.0"
86 }
87}