This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-simple-idle-monitor",
"version": "1.0.1",
"description": "Simple monitor of idle time for React",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"alias": {
"react-simple-idle-monitor": "./"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext .jsx,.js,.tsx,.ts ./src ./__tests__ ./examples/*.tsx",
"build": "babel src -d lib -x .tsx",
"preversion": "npm test && npm run lint",
"version": "npm run build && npm run declarations",
"postversion": "git push && git push --tags",
"prettier": "prettier --write ./src/*.tsx ./__tests__/index.tsx",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"declarations": "tsc --emitDeclarationOnly --project ./src",
"examples": "npm run build && parcel examples/index.html --out-dir examples/dist --cache-dir examples/cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satyam/react-simple-idle-monitor.git"
},
"keywords": [
"react",
"idle",
"timer",
"monitor",
"screensaver"
],
"author": "Daniel Barreiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/Satyam/react-simple-idle-monitor/issues"
},
"homepage": "https://github.com/Satyam/react-simple-idle-monitor#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^24.8.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.2.7",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6"
}
}