-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "react-native-combined-button",
"version": "0.3.0",
"description": "A button component with icon and text for react-native app.",
"main": "combined-button.js",
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"node_modules"
],
"verbose": true,
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/bird-frank/react-native-combined-button.git"
},
"keywords": [
"react-native",
"button"
],
"author": "bird.frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/bird-frank/react-native-combined-button/issues"
},
"homepage": "https://github.com/bird-frank/react-native-combined-button#readme",
"dependencies": {
"react": "^15.2.1",
"react-native": "^0.29.0"
},
"devDependencies": {
"babel-jest": "^13.2.2",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-react-native": "^1.9.0",
"enzyme": "^2.4.1",
"jest-cli": "^13.2.3",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"react-native-mock": "^0.2.4"
}
}