forked from SupremeTechnopriest/react-idle-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
63
64
65
66
67
{
"name": "react-idle-timer",
"version": "5.0.0-rc.16",
"description": "Activity detection for React.js",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"start": "nps",
"test": "jest",
"build": "scripts/build.js"
},
"keywords": [
"react",
"idle",
"idle timer",
"timer",
"activity",
"active",
"timeout",
"session",
"session expiration",
"session timeout"
],
"author": "Randy Lebeau <randylebeau@gmail.com> (https://github.com/supremetechnopriest)",
"license": "MIT",
"homepage": "https://idletimer.dev",
"repository": {
"type": "git",
"url": "https://github.com/supremetechnopriest/react-idle-timer.git"
},
"bugs": "https://github.com/supremetechnopriest/react-idle-timer/issues/new/choose",
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.1",
"estrella": "^1.4.1",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"utility-types": "^3.10.0",
"worker-timers": "^7.0.45"
}
}