forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-native-elements",
"version": "1.0.0-beta5",
"description": "React Native Elements & UI Toolkit",
"main": "src/index.js",
"types": "src/index.d.ts",
"keywords": [
"react-native",
"reactjs",
"reactnative",
"bootstrap"
],
"scripts": {
"build": "rm -rf build; webpack",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postinstall": "opencollective postinstall",
"lint": "eslint src/",
"precommit": "lint-staged && npm test",
"prettify": "prettier --write 'src/**/*.js'"
},
"author": "Nader Dabit & Monte Thakkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-training/react-native-elements/issues"
},
"homepage": "https://github.com/react-native-training/react-native-elements#readme",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-elements",
"logo": "https://opencollective.com/react-native-elements/logo.txt"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.times": "^4.3.2",
"opencollective": "^1.0.3",
"react-native-touchable-scale": "2.0.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-preset-react-native": "^1.9.1",
"codecov": "^2.1.0",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-react-native": "^2.3.1",
"file-loader": "^0.11.1",
"husky": "^0.13.3",
"image-webpack-loader": "^3.3.1",
"jest": "22.1.4",
"lint-staged": "^3.4.0",
"prettier": "^1.10.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-native": "0.52.2",
"react-native-vector-icons": "^4.4.2",
"react-test-renderer": "16.2.0",
"webpack": "^2.2.1"
},
"peerDependencies": {
"react-native-vector-icons": "^4.2.0"
},
"jest": {
"preset": "react-native",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/helpers/*.js"
],
"collectCoverage": true,
"globals": {
"__DEV__": true
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-training/react-native-elements.git"
}
}