forked from kyo504/react-native-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "react-native-marquee",
"version": "0.5.0",
"description": "React Native Marquee Text Component",
"main": "src/index.tsx",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ts-check": "tsc -p tsconfig.json",
"eslint-check": "eslint --ext .js,.jsx,.ts,.tsx .",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyo504/react-native-marquee.git"
},
"keywords": [
"react-native",
"marquee",
"ios",
"android"
],
"author": "Hunkyo Jung <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyo504/react-native-marquee/issues"
},
"homepage": "https://github.com/kyo504/react-native-marquee#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.3",
"@types/react": "^18.0.24",
"@types/react-native": "^0.71.3",
"eslint": "^8.34.0",
"husky": "8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"typescript": "4.8.4"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"@react-navigation/native-stack": "^6.9.11"
}
}