forked from ConstructiveCoding/react-native-device-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "react-native-device-log",
"keywords": [
"react-component",
"react-native",
"ios",
"android"
],
"files": [
"lib/**/*"
],
"version": "2.0.3",
"description": "A GUI and service for handling development log messages on a device",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/olofd/react-native-device-log.git"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Olof Dahlbom",
"license": "MIT",
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/netinfo": "^5.8.1",
"debounce": "^1.0.2",
"json-stringify-safe": "^5.0.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"stacktrace-parser": "^0.1.4",
"uuid": "^3.4.0"
},
"peerDependencies": {
"@types/react": "^16.9.34",
"react": "^16.9.0",
"react-native": "^0.61.5",
"realm": "^5.0.3"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.5",
"react": "^16.9.0",
"react-native": "^0.61.5",
"realm": "^5.0.3",
"typescript": "^3.8.3"
}
}