-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "redux-undo",
"version": "1.0.1",
"description": "simple undo/redo functionality for redux state containers",
"main": "./dist/redux-undo.umd.js",
"typings": "typings.d.ts",
"exports": {
".": {
"import": "./dist/redux-undo.mjs",
"require": "./dist/redux-undo.umd.js",
"types": "./typings.d.ts"
}
},
"scripts": {
"build": "vite build",
"lint": "npx eslint src test",
"test": "vitest run",
"test:bail": "npm run test:watch -- --bail",
"test:cov": "npm run test -- --coverage",
"test:coveralls": "npm run test -- --coverage && coveralls < coverage/lcov.info",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/omnidan/redux-undo.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"author": "Daniel Bugl <[email protected]> (https://github.com/omnidan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omnidan/redux-undo/issues"
},
"homepage": "https://github.com/omnidan/redux-undo",
"devDependencies": {
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"redux": "^4.2.1",
"rimraf": "^5.0.1",
"vite": "^4.3.0",
"vitest": "^0.32.2",
"@vitest/coverage-istanbul": "^0.32.0",
"coveralls": "^3.0.0"
}
}