-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "react-native-countup-component",
"version": "0.9.0",
"description": "React Native CountUp Component",
"repository": {
"type": "git",
"url": "git+https://github.com/z4q/react-native-countup.git"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"counter",
"countup"
],
"author": "Ruzaini Ourtech <ruzaini@ourtech.my>",
"homepage": "https://github.com/z4q/react-native-countup",
"bugs": {
"url": "https://github.com/z4q/react-native-countup/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"@types/jest": "^29.0.0",
"typescript": "^4.5.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.0.0",
"react-test-renderer": ">=16.8.0"
},
"dependencies": {
"date-fns": "^2.28.0"
}
}