forked from vadimdemedes/tailwind-rn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "tailwind-rn",
"version": "3.0.0",
"description": "Use Tailwind CSS in React Native projects",
"license": "MIT",
"repository": "vadimdemedes/tailwind-rn",
"author": {
"name": "Vadim Demedes",
"email": "[email protected]",
"url": "https://vadimdemedes.com"
},
"bin": {
"create-tailwind-rn": "cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "node cli",
"prepare": "npm run build",
"test": "xo && tsd && ava"
},
"files": [
"build.js",
"cli.js",
"index.js",
"index.d.ts",
"styles.json"
],
"keywords": [
"tailwind",
"tailwindcss",
"react-native"
],
"dependencies": {
"css": "^2.2.4",
"css-to-react-native": "^3.0.0",
"match-all": "^1.2.6",
"meow": "^7.0.1",
"postcss": "^8.1.14"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.5.0",
"prettier": "^1.19.1",
"tailwindcss": "^2.0.2",
"tsd": "^0.11.0",
"xo": "^0.30.0"
},
"ava": {
"babel": true
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"bracketSpacing": false
}
}