-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
85 lines (85 loc) · 2.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-native-watch-connectivity",
"version": "1.1.0",
"description": "React Native library to enable communication with Apple Watch app",
"main": "dist/index.js",
"files": [
"dist",
"ios",
"LICENSE.md",
"README.md",
"RNWatch.podspec"
],
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Michael Ford",
"email": "[email protected]"
},
"contributors": [
{
"name": "Petr Bela",
"email": "[email protected]"
},
{
"name": "Mars Lan",
"email": "[email protected]"
}
],
"keywords": [
"react-native",
"ios",
"watch",
"apple-watch"
],
"homepage": "http://mtford.co.uk/react-native-watch-connectivity/",
"scripts": {
"build": "rm -rf dist && yarn tsc && cp ./lib/RNWatch.d.ts ./dist/RNWatch.d.ts && yarn lint ./dist/**/*.d.ts ./dist/**/*.js --fix --quiet",
"lint": "eslint --ext .js,.jsx,.ts,.tsx",
"precommit": "tsc --skipLibCheck && lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/mtford90/react-native-watch-connectivity.git"
},
"peerDependencies": {
"react": ">=15.1",
"react-native": ">=0.40"
},
"lint-staged": {
"package.json": [
"sort-package-json",
"git add"
],
"lib/**/*.ts?(x)": [
"yarn lint --fix",
"git add"
],
"example/src/**/*.ts?(x)": [
"yarn lint --fix",
"git add"
]
},
"dependencies": {
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"typescript": "^3.9.5",
"eslint-plugin-typescript-sort-keys": "^1.2.0",
"eslint": "^6.8.0",
"@types/react-native": "^0.62.2",
"@types/react": "^16.9.34",
"react-native": "^0.62.2",
"react": "16.11.0",
"@react-native-community/eslint-config": "^1.1.0",
"lint-staged": "^10.1.3",
"husky": "^4.2.5",
"sort-package-json": "^1.41.0",
"prettier": "^2.0.4",
"eslint-plugin-prettier": "^3.1.3",
"@types/lodash.sortby": "^4.7.6"
},
"jest": {
"preset": "react-native"
}
}