forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.26 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.26 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-elements",
"version": "1.0.0-rnw",
"description": "React Native Elements & UI Toolkit",
"directories": {
"lib": "dist"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dabit3/React-Native-Elements.git"
},
"keywords": [
"react-native",
"reactjs",
"reactnative",
"bootstrap"
],
"scripts": {
"build:dist": "babel src --out-dir dist --ignore __tests__,test.js -s --copy-files ",
"test": "jest native web",
"test:watch": "jest --watch native web",
"test:coverage": "jest --coverage native web",
"postinstall": "opencollective postinstall",
"lint": "eslint src/",
"prettify": "prettier --write 'src/**/*.js'",
"styleguide": "styleguidist --config ./styleguide/styleguide.config.js server",
"yalc": "yarn build:dist && yalc push"
},
"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",
"prop-types": "^15.5.8",
"react-art": "^16.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^22.0.4",
"babel-loader": "^6.3.2",
"babel-plugin-react-native-web": "^0.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^1.9.1",
"babel-preset-stage-0": "^6.24.1",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"codecov": "^2.1.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-styleguidist-sample-parser": "^0.1.11",
"enzyme-to-json": "^3.2.2",
"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",
"lodash.capitalize": "^4.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.mapkeys": "^4.6.0",
"lodash.merge": "^4.6.0",
"no-op": "^1.0.3",
"prettier": "^1.7.4",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-native": "0.52.2",
"react-native-vector-icons": "^4.4.2",
"react-native-web": "^0.8.0",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "16.2.0",
"sinon": "^4.1.2",
"webpack": "^2.2.1"
},
"peerDependencies": {
"react-native-vector-icons": "^4.2.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/*.js",
"!src/index.js",
"!src/helpers/*.js"
],
"collectCoverage": true,
"projects": [
"jest.native.config.json",
"jest.web.config.json"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
}