-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "redux-heartbeat",
"version": "0.5.0",
"description": "Redux middleware providing a heartbeat that contains log of actions occurring between each beat. Great for hooking up further tools for reporting application usage over time, or persisting replayable sessions incrementally.",
"repository": {
"type": "git",
"url": "https://github.com/alechill/redux-heartbeat.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"preversion": "yarn test",
"prepublish": "yarn test",
"build": "tsc --project . --module commonjs",
"pretest": "yarn build",
"test": "mocha --require @babel/register ./dist/test/test.js"
},
"keywords": [
"redux",
"middleware",
"heartbeat"
],
"author": "Alec Hill",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-transform-object-assign": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/register": "7.16.0",
"@types/chai": "^4.0.1",
"@types/mocha": "9.0.0",
"@types/redux": "^3.6.0",
"@types/sinon": "^1.16.32",
"chai": "^4.1.0",
"mocha": "9.1.3",
"pre-commit": "1.2.2",
"redux": "^3.7.2",
"sinon": "^1.17.6",
"tslint": "6.1.3",
"typescript": "4.5.2"
}
}