-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "react-native-toggle-element",
"version": "2.1.0",
"description": "Switch toggle component for React Native. You can add title, icon, modify component for toggle button.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"test": "jest",
"lint": "tslint --project ./tsconfig.json"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mymai91/react-native-toggle-element.git"
},
"keywords": [
"react-native-toggle",
"react-native-toggle-element"
],
"author": "Jany Mai",
"license": "MIT",
"bugs": {
"url": "https://github.com/mymai91/react-native-toggle-element/issues"
},
"homepage": "https://github.com/mymai91/react-native-toggle-element#readme",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-native": "^4.0.5",
"@testing-library/react-native": "^10.1.1",
"@types/jest": "^28.1.6",
"@types/react": "^16.13.1",
"@types/react-native": "^0.69.3",
"@types/react-test-renderer": "^18.0.0",
"jest": "^28.1.3",
"metro-react-native-babel-preset": "^0.71.3",
"react": "^16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "^4.7.4"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
}
}