-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
{
"name": "google-playswipe",
"description": "React Native component that that mimics the UI present in Google Play Store, Movies & TV",
"author": {
"name": "Chandan Rauniyar",
"email": "chandankkrr@gmail.com",
"url": "https://chandankkrr.github.io"
},
"version": "1.0.1",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"private": false,
"homepage": "https://github.com/Chandankkrr/google-play-swipe",
"keywords": [
"react native",
"reactnative",
"react-native",
"react-native-component",
"react",
"google play",
"swipe",
"android",
"ios"
],
"repository": {
"url": "https://github.com/Chandankkrr/google-play-swipe",
"type": "git"
},
"bugs": {
"url": "https://github.com/Chandankkrr/google-play-swipe/issues"
},
"main": "lib/PlaySwipe.js",
"types": "lib/PlaySwipe.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf /lib && tsc",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest"
},
"peerDependencies": {
"react": "~16.9.0",
"react-native": "~0.61.4"
},
"devDependencies": {
"@babel/core": "~7.6.0",
"@types/react": "~16.9.0",
"@types/react-native": "^0.60.31",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-preset-expo": "~8.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest-expo": "~36.0.1",
"typescript": "~3.6.3"
},
"jest": {
"preset": "react-native"
}
}