-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "@shipt/segmented-arc-for-react-native",
"version": "1.2.2",
"type": "module",
"description": "Segmented arc component for React Native ",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:o": "jest --watch --colors",
"test:coverage": "jest --coverage --colors",
"lint": "git diff --name-only --diff-filter=d HEAD | grep -E 'src/.*.js' | grep -v json | xargs node node_modules/eslint/bin/eslint.js --quiet",
"lint-commit": "git diff --cached --name-only --diff-filter=d HEAD | grep -E 'src/.*.js' | grep -v json | xargs node node_modules/eslint/bin/eslint.js --quiet",
"prepare": "husky",
"pretty-quick": "pretty-quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shipt/segmented-arc-for-react-native.git"
},
"keywords": [
"react",
"react-native",
"ios",
"android",
"segmented-arc",
"arc",
"segmented-gauge"
],
"author": "Jakhongir Khusanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/shipt/segmented-arc-for-react-native/issues"
},
"homepage": "https://github.com/shipt/segmented-arc-for-react-native#readme",
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": ">= 18.1.0",
"react-native": ">=0.70.0",
"react-native-svg": "^15.1.0"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@testing-library/react-native": "^12.4.5",
"@babel/eslint-parser": "^7.24.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react": ">= 18.x",
"react-native": ">=0.70.0",
"react-native-svg": "^15.1.0",
"react-test-renderer": "^18.2.0"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/react-native/extend-expect"
],
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native))"
]
}
}