-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "react-native-increment-decrement-button",
"version": "1.0.0",
"description": "A simple component for numeric input with increment and decrement buttons",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "bob build"
},
"peerDependencies": {
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-paper": "^4.7.2",
"react-native-vector-icons": "^8.1.0"
},
"dependencies": {
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-paper": "^4.7.2",
"react-native-vector-icons": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/bob": "^0.17.1",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1"
},
"source": "RnIncrementDecrementBtn",
"output": "dist",
"targets": "module",
"author": "Shrilakshmi Shastry",
"repository": {
"type": "git",
"url": "https://github.com/shrilakshmishastry/react-native-increment-decrement-button"
},
"license": "ISC",
"react-native": "RnIncrementDecrementBtn/index.js",
"module": "dist/module/index.js",
"files": [
"RnIncrementDecrementBtn",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"@react-native-community/bob": {
"source": "RnIncrementDecrementBtn",
"output": "dist",
"targets": [
"commonjs",
"module"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
]
}