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
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-idle-timer",
"version": "4.2.2",
"description": "Activity detection for React.js",
"main": "dist/index.min.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c && cp src/index.d.ts dist/index.d.ts",
"watch": "rollup -c -w",
"clean": "rimraf dist example/src/dist docs coverage",
"lint": "standard lint",
"fix": "standard --fix",
"test": "yarn lint && jest",
"docs": "./scripts/docs",
"prepackage": "yarn clean && yarn test && yarn build && yarn docs",
"package": "./scripts/package",
"example": "./scripts/example"
},
"keywords": [
"react",
"idle",
"idletimer",
"timer",
"activity",
"active"
],
"author": "Randy Lebeau <randylebeau@gmail.com> (https://github.com/supremetechnopriest)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/supremetechnopriest/react-idle-timer.git"
},
"peerDependencies": {
"prop-types": "^15.x.x",
"react": "^16.x.x",
"react-dom": "^16.x.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"date-fns": "^1.29.0",
"docco": "^0.8.0",
"documentation": "^8.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.2.0",
"prompt-list": "^3.2.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.6.2",
"rollup": "^0.61.2",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-progress": "^0.4.0",
"simulant": "^0.2.2",
"sinon": "^6.0.1",
"standard": "^11.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"/example/"
],
"setupFiles": [
"./test.setup.js"
],
"collectCoverage": true
},
"standard": {
"parser": "babel-eslint",
"globals": [
"beforeEach",
"describe",
"it",
"expect"
]
}
}