-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "react-native-carplay",
"version": "1.3.1",
"description": "CarPlay for React Native",
"main": "lib/index.js",
"files": [
"src",
"lib",
"ios",
"react-native-carplay.podspec"
],
"podspecPath": "./react-native-carplay.podspec",
"scripts": {
"prepublish": "yarn run build",
"prettier": "prettier --write '**/*.{json,md,js,jsx,ts,tsx}'",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"build": "tsc",
"build:dev": "tsc && cp -r lib example/node_modules/react-native-carplay",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birkir/react-native-carplay.git"
},
"keywords": [
"react",
"native",
"carplay",
"navigation",
"car",
"auto"
],
"author": "Birkir Gudjonsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/birkir/react-native-carplay/issues"
},
"homepage": "https://github.com/birkir/react-native-carplay#readme",
"devDependencies": {
"@types/node": "11.11.7",
"@types/react-native": "0.57.41",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"tslint": "5.14.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.4000"
},
"dependencies": {
"traverse": "^0.6.6"
}
}