-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "react-native-app-link",
"version": "1.0.1",
"description": "Easily link to other apps with React Native.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/datwheat/react-native-app-link.git"
},
"scripts": {
"lint:staged": "lint-staged",
"precommit": "npm run lint:staged"
},
"keywords": [
"React",
"Native",
"js"
],
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma es5 ",
"git add"
]
},
"author": "Juwan Wheatley",
"license": "MIT",
"bugs": {
"url": "https://github.com/datwheat/react-native-app-link/issues"
},
"homepage": "https://github.com/datwheat/react-native-app-link#readme",
"dependencies": {},
"devDependencies": {
"husky": "^0.13.1",
"lint-staged": "^3.3.1",
"prettier": "^0.20.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.20.0"
}
}