-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 960 Bytes
/
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-dots-paginate",
"version": "0.0.2",
"description": "Dots Pagination component",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it",
"prepare": "bob build"
},
"keywords": [
"react-native",
"pagination",
"dots"
],
"files": [
"src",
"lib",
"README.md"
],
"author": "Web Secret",
"repository": {
"type": "git",
"url": "git+https://github.com/websecret/react-native-dots-pagination.git"
},
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/bob": "^0.8.0",
"release-it": "^12.4.3"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module"
]
}
}