UNPKG

2.54 kBJSONView Raw
1{
2 "name": "tailwindcss",
3 "version": "1.6.0",
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 "tailwindcss": "lib/cli.js"
14 },
15 "contributors": [
16 "Adam Wathan <adam.wathan@gmail.com>",
17 "Jonathan Reinink <jonathan@reinink.ca>",
18 "David Hemphill <davidlee.hemphill@gmail.com>"
19 ],
20 "scripts": {
21 "prebabelify": "rimraf lib",
22 "babelify": "babel src --out-dir lib --copy-files",
23 "rebuild-fixtures": "npm run babelify && babel-node scripts/rebuildFixtures.js",
24 "prepare": "npm run babelify && babel-node scripts/build.js",
25 "style": "eslint .",
26 "test": "jest && eslint ."
27 },
28 "files": [
29 "dist/*.css",
30 "lib/*",
31 "scripts/*.js",
32 "stubs/*.stub.js",
33 "*.css",
34 "*.js"
35 ],
36 "devDependencies": {
37 "@babel/cli": "^7.0.0",
38 "@babel/core": "^7.0.0",
39 "@babel/node": "^7.0.0",
40 "@babel/preset-env": "^7.0.0",
41 "babel-jest": "^26.0.0",
42 "clean-css": "^4.1.9",
43 "eslint": "^6.0.1",
44 "eslint-config-postcss": "^2.0.2",
45 "eslint-config-prettier": "^6.0.0",
46 "eslint-plugin-prettier": "^3.0.1",
47 "jest": "^25.1.0",
48 "prettier": "^1.7.4",
49 "rimraf": "^3.0.0"
50 },
51 "dependencies": {
52 "@fullhuman/postcss-purgecss": "^2.1.2",
53 "autoprefixer": "^9.4.5",
54 "browserslist": "^4.12.0",
55 "bytes": "^3.0.0",
56 "chalk": "^3.0.0 || ^4.0.0",
57 "color": "^3.1.2",
58 "detective": "^5.2.0",
59 "fs-extra": "^8.0.0",
60 "lodash": "^4.17.15",
61 "node-emoji": "^1.8.1",
62 "normalize.css": "^8.0.1",
63 "postcss": "^7.0.11",
64 "postcss-functions": "^3.0.0",
65 "postcss-js": "^2.0.0",
66 "postcss-nested": "^4.1.1",
67 "postcss-selector-parser": "^6.0.0",
68 "pretty-hrtime": "^1.0.3",
69 "reduce-css-calc": "^2.1.6",
70 "resolve": "^1.14.2"
71 },
72 "browserslist": [
73 "> 1%"
74 ],
75 "babel": {
76 "presets": [
77 [
78 "@babel/preset-env",
79 {
80 "targets": {
81 "node": "8.9.0"
82 }
83 }
84 ]
85 ]
86 },
87 "jest": {
88 "setupFilesAfterEnv": [
89 "<rootDir>/jest/customMatchers.js"
90 ],
91 "testPathIgnorePatterns": [
92 "<rootDir>/__tests__/fixtures/",
93 "<rootDir>/__tests__/util/"
94 ]
95 },
96 "engines": {
97 "node": ">=8.9.0"
98 }
99}