-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.8 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.8 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "hyperview",
"version": "0.106.0",
"main": "src/index.ts",
"description": "React Native client for Hyperview XML",
"homepage": "https://hyperview.org",
"keywords": [
"hyperview",
"react-native-hyperview",
"hyperview-xml"
],
"bugs": {
"url": "https://github.com/Instawork/hyperview/issues",
"email": "engineering-contact@instawork.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Instawork/hyperview"
},
"license": "MIT",
"scripts": {
"sync": "ts-node ./scripts/sync",
"preversion": "yarn test",
"prettify": "pretty-quick && prettier --write '**/*.xsd' '**/*.xml' '**/*.md'",
"postversion": "yarn publish --new-version $npm_package_version && cd demo && yarn add hyperview@$npm_package_version && git add package.json yarn.lock && git commit -m\"chore(demo): update Hyperview to v$npm_package_version\" && cd .. && git push --follow-tags",
"format-njk": "./scripts/format-njk.sh",
"release:patch": "yarn version --patch",
"release:minor": "yarn version --minor",
"release:major": "yarn version --major",
"test:ts": "tsc",
"test:lint": "eslint src && prettier --check '**/*.xsd' '**/*.xml' '**/*.md' && yarn format-njk -c",
"test:unit": "jest --runInBand --testPathPattern src",
"test:validate-xml": "find test src -name '*.xml' | xargs xmlschema-validate --schema schema/hyperview.xsd --version 1.1",
"test": "yarn test:ts && yarn test:lint && yarn test:unit && yarn test:validate-xml"
},
"dependencies": {
"@instawork/xmldom": "0.0.3",
"lodash": "4.17.21",
"tiny-emitter": "2.1.0",
"url-parse": "1.5.10"
},
"peerDependencies": {
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-picker/picker": "^2.9.0",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@types/react": "~18.3.12",
"react": "^18.3.1",
"react-native": "^0.76.7",
"react-native-gesture-handler": "^2.11.0",
"react-native-safe-area-context": "^4.12.0",
"react-native-screens": "^4.6.0",
"react-native-webview": "^13.12.5"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.26.5",
"@babel/node": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/runtime": "7.26.0",
"@prettier/plugin-xml": "0.13.0",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-picker/picker": "2.9.0",
"@react-navigation/bottom-tabs": "6.5.7",
"@react-navigation/native": "6.1.6",
"@react-navigation/stack": "6.3.16",
"@testing-library/react-native": "13.2.0",
"@tsconfig/react-native": "3.0.2",
"@types/jest": "29.5.14",
"@types/lodash": "4.14.198",
"@types/node": "20.8.2",
"@types/react": "~18.3.12",
"@types/url-parse": "1.4.9",
"babel-eslint": "10.1.0",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"chokidar": "3.5.1",
"eslint": "7.20.0",
"eslint-import-resolver-babel-module": "5.2.0",
"eslint-plugin-instawork": "0.12.0",
"jest": "29.7.0",
"metro-react-native-babel-preset": "0.76.9",
"patch-package": "6.2.2",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-gesture-handler": "2.11.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "4.6.0",
"react-native-webview": "13.12.5",
"react-test-renderer": "18.3.1",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"./demo/"
],
"setupFiles": [
"./test/setup.ts"
],
"transformIgnorePatterns": [
"./src/components/keyboard-aware-scrollview/"
]
}
}