forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.02 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tailwindcss",
"version": "1.0.4",
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/tailwind.css",
"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 <[email protected]>",
"Jonathan Reinink <[email protected]>",
"David Hemphill <[email protected]>"
],
"scripts": {
"prebabelify": "rimraf lib",
"babelify": "babel src --out-dir lib --copy-files",
"prepare": "npm run babelify && babel-node src/build.js",
"style": "eslint .",
"test": "jest && eslint ."
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^24.3.1",
"clean-css": "^4.1.9",
"eslint": "^5.15.1",
"eslint-config-postcss": "^2.0.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.3.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.3"
},
"dependencies": {
"autoprefixer": "^9.4.5",
"bytes": "^3.0.0",
"chalk": "^2.4.1",
"fs-extra": "^8.0.0",
"lodash": "^4.17.11",
"node-emoji": "^1.8.1",
"normalize.css": "^8.0.1",
"postcss": "^7.0.11",
"postcss-functions": "^3.0.0",
"postcss-js": "^2.0.0",
"postcss-nested": "^4.1.1",
"postcss-selector-parser": "^6.0.0",
"pretty-hrtime": "^1.0.3"
},
"browserslist": [
"> 1%"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.9.0"
}
}
]
]
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest/customMatchers.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/fixtures/"
]
},
"engines": {
"node": ">=8.9.0"
}
}