forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.04 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
{
"name": "tailwindcss",
"version": "0.4.1",
"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 <[email protected]>",
"Jonathan Reinink <[email protected]>",
"David Hemphill <[email protected]>"
],
"scripts": {
"prebabelify": "rimraf lib",
"babelify": "babel src --out-dir lib",
"prepare": "npm run babelify && babel-node src/build.js",
"watch": "nodemon -e js,css --watch src --exec 'babel-node src/build.js'",
"style": "eslint .",
"test": "jest && eslint ."
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"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",
"eslint": "^4.10.0",
"eslint-config-postcss": "^2.0.2",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^20.0.4",
"mousetrap": "^1.6.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.1"
},
"dependencies": {
"commander": "^2.11.0",
"fs-extra": "^4.0.2",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"perfectionist": "^2.4.0",
"postcss": "^6.0.9",
"postcss-functions": "^3.0.0"
},
"browserslist": [
"> 1%"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.9.0"
}
}
],
"stage-2",
"stage-3",
"react"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest/customMatchers.js",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/fixtures/"
]
},
"engines": {
"node": ">=6.9.0"
}
}