forked from Ajackster/react-native-global-props
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "react-native-global-props",
"description": "A simple javascript implementation to add custom, default props to react-native components.",
"version": "1.1.3",
"author": {
"name": "Andrew L. Jackson",
"url": "https://github.com/Ajackster"
},
"bugs": {
"url": "https://github.com/Ajackster/react-native-global-props/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Ajackster/react-native-global-props/blob/master/LICENSE"
}
],
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/Ajackster/react-native-global-props"
},
"main": "./src",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-jest": "17.0.2",
"babel-preset-react-native": "1.9.0",
"eslint": "^3.12.0",
"eslint-plugin-react": "^6.8.0",
"jest": "17.0.3",
"react-test-renderer": "15.4.1"
},
"jest": {
"preset": "react-native"
},
"keywords": [
"global",
"props",
"font",
"style",
"components",
"react-native"
]
}