-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "react-native-navigation-sdk",
"version": "0.2.0-beta",
"author": "Google",
"description": "A react-native library for Google's Navigation SDK",
"private": false,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/react-native-navigation-sdk"
},
"bugs": {
"url": "https://github.com/googlemaps/react-native-navigation-sdk/issues"
},
"homepage": "https://github.com/googlemaps/react-native-navigation-sdk",
"keywords": [
"react-native",
"android",
"library",
"google-navigation",
"navsdk"
],
"scripts": {
"test": "jest",
"test:types": "tsc",
"prettier:write": "npx prettier --write **/*.{js,jsx,ts,tsx,json} && npx prettier --write *.{js,jsx,ts,tsx,json}",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./",
"jsdoc": "jsdoc -c jsdoc.json"
},
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/react": "^18.2.78",
"@types/react-native": "^0.72.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}