-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "react-native-user-inactivity",
"version": "1.2.0",
"description": "React Native component that notifies if the user is active or not",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf ./lib",
"prebuild": "npm run clean && npm run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"react-native",
"user",
"typescript",
"tracking",
"inactivity"
],
"author": "Alberto Schiabel (https://github.com/jkomyno)",
"license": "MIT",
"dependencies": {
"usetimeout-react-hook": "^0.1.2"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.46",
"@types/react-native-background-timer": "^2.0.0",
"react-native-background-timer": "^2.4.1",
"rimraf": "^2.6.3",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.5.3",
"ws": ">=3.3.1"
},
"peerDependencies": {
"react": "^17.0.0",
"react-native": "^0.63.0",
"react-native-background-timer": "^2.4.1"
}
}