forked from TaylorOno/react-native-shake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.75 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
71
72
73
74
75
76
77
{
"name": "react-native-shake",
"version": "5.5.0",
"description": "A library to detect shake event on Android and iOS",
"homepage": "https://github.com/Doko-Demo-Doa/react-native-shake",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"author": "Quan Pham <[email protected]>",
"license": "MIT",
"files": [
"android",
"ios",
"js",
"lib",
"react-native-shake.podspec",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"repository": {
"type": "git",
"url": "https://github.com/Doko-Demo-Doa/react-native-shake.git"
},
"scripts": {
"compile": "rimraf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run compile",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.5.2",
"@types/react-native": "^0.72.2",
"babel-jest": "^29.5.0",
"eslint": "^8.43.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"metro-react-native-babel-preset": "^0.76.7",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "^0.71.6"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"codegenConfig": {
"name": "RNShakeSpec",
"type": "modules",
"jsSrcsDir": "js",
"android": {
"javaPackageName": "com.clipsub.RNShake"
}
}
}