-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "postcss-react-native",
"version": "1.0.1",
"description": "PostCSS plugin to create react stylesheets",
"keywords": [
"postcss",
"css",
"react-native",
"postcss-plugin"
],
"author": "Justin Spears<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jspears/postcss-react-native.git"
},
"scripts": {
"dist": "babel -s true src -d dist",
"prepublish": "npm run dist",
"test": "mocha --compilers js:babel-register test/*test.js"
},
"bin": {
"prn": "./bin/prn.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"css-border-property": "^1.1.0",
"css-mediaquery": "^0.1.2",
"parse-color": "^1.0.0",
"parse-css-font": "^2.0.2",
"postcss": "^5.0.4",
"postcss-selector-parser": "^2.0.0",
"postcss-value-parser": "^3.3.0",
"react-native-animatable": "^0.6.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react-native": "^1.9.1",
"babel-register": "^6.9.0",
"chai": "^3.2.0",
"fb-watchman": "^1.9.0",
"lodash": "^3.10.1",
"mocha": "^2.2.5"
}
}