-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "react-native-accessibility-actions",
"version": "0.0.1",
"description": "Simplify handling accessibility actions in React Native apps.",
"main": "lib/index.js",
"source": "src/index",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mkraina/react-native-accessibility-actions"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --cache",
"tscheck": "tsc --noEmit",
"build": "tsc --project tsconfig.build.json",
"verify": "yarn run lint --quiet && yarn tscheck && yarn test",
"bootstrap": "yarn --cwd example && yarn && (cd example && cd ios && pod install)",
"test": "jest",
"prepare": "yarn build && husky install"
},
"keywords": [
"react native",
"a11y",
"accessibility"
],
"author": "Martin Kraina",
"license": "MIT",
"files": [
"lib",
"LICENSE",
"README.md"
],
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^11.5.2",
"@types/jest": "^29.4.0",
"@types/react": "18.0",
"@types/react-native": "0.69",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.0",
"prettier": "^2.3.2",
"react": "18.0.0",
"react-native": "0.69.8",
"react-test-renderer": "^18.2.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=16.11.0",
"react-native": ">=0.62"
},
"dependencies": {
"react-native-uuid": "^2.0.1",
"use-event-callback": "^0.1.0"
}
}