-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
60 lines (60 loc) · 1.27 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
{
"name": "@use-expo/battery",
"version": "2.0.0",
"description": "Complementary hooks for expo-battery",
"keywords": [
"expo",
"battery",
"hooks"
],
"license": "MIT",
"author": "Cedric van Putten <me@bycedric.com> (https://bycedric.com)",
"homepage": "https://github.com/bycedric/use-expo/tree/master/packages/battery#readme",
"bugs": {
"url": "https://github.com/bycedric/use-expo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bycedric/use-expo.git",
"directory": "packages/battery"
},
"directories": {
"lib": "src",
"test": "tests"
},
"main": "build/commonjs/index.js",
"react-native": "src/index.ts",
"module": "build/module/index.js",
"types": "build/typescript/src/index.d.ts",
"files": [
"build",
"src"
],
"scripts": {
"prepare": "bob build",
"build": "bob build"
},
"devDependencies": {
"@react-native-community/bob": "^0.14.3",
"@testing-library/react-hooks": "^3.2.1",
"@types/react": "~16.9.32",
"expo-battery": "~2.2.1",
"react": "16.9.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"expo-battery": ">=2.1.0"
},
"@react-native-community/bob": {
"source": "src",
"output": "build",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"publishConfig": {
"access": "public"
}
}