This repository was archived by the owner on Apr 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"name": "react-native-css",
"version": "2.1.2",
"description": "Style React-Native components with css",
"main": "build/index.js",
"scripts": {
"start": "babel src --out-dir build",
"prepublish": "npm run start",
"test": "babel-tap test/*.test.js",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"echo": "echo 'hello'"
},
"author": "Sabeur Thabti",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"css": "^2.2.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"pre-commit": "^1.2.2",
"to-camel-case": "~0.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-tap": "^5.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"expect": "^1.14.0",
"tap": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sabeurthabti/react-native-css.git"
},
"keywords": [
"react",
"react-native",
"react-component",
"css",
"styling",
"components",
"ios"
],
"bugs": {
"url": "https://github.com/sabeurthabti/react-native-css/issues"
},
"precommit": [
"test"
],
"homepage": "https://github.com/sabeurthabti/react-native-css"
}