forked from styled-components/css-to-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "css-to-react-native",
"version": "1.0.6",
"description": "Convert CSS text to a React Native stylesheet object",
"main": "dist/index.js",
"scripts": {
"build-grammar": "nearleyc src/grammar.ne -o src/grammar.js",
"build": "npm run build-grammar; babel src --ignore test.js --out-dir dist",
"test": "npm run build-grammar; jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/styled-components/css-to-react-native.git"
},
"keywords": [
"styled-components",
"React",
"ReactNative",
"styles",
"CSS"
],
"author": "Jacob Parker",
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/css-to-react-native/issues"
},
"homepage": "https://github.com/styled-components/css-to-react-native#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^17.0.0"
},
"dependencies": {
"css-color-list": "0.0.1",
"fbjs": "^0.8.5",
"nearley": "^2.7.7"
}
}