forked from olofd/react-native-device-log
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 KB
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
{
"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/constructivecoding/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",
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.16.0",
"@react-native-community/netinfo": "^8.0.0",
"debounce": "^1.2.0",
"json-stringify-safe": "^5.0.1",
"moment": "^2.29.0",
"prop-types": "^15.8.0",
"stacktrace-parser": "^0.1.0",
"uuid": "^3.3.0"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.16.0",
"@react-native-community/netinfo": "^8.0.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"debounce": "^1.2.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"json-stringify-safe": "^5.0.1",
"moment": "^2.29.0",
"prettier": "^2.5.0",
"prop-types": "^15.8.0",
"react": "17.0.2",
"react-native": "^0.65.0",
"realm": "^5.0.3",
"stacktrace-parser": "^0.1.0",
"typescript": "^4.5.5"
}
}