-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "@linn-it/redux-utils",
"repository": {
"type": "git",
"url": "https://github.com/linn/redux-utils"
},
"description": "A collection of Redux utilities for Linn IT dev projects",
"version": "2.1.2",
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"deploy": "npm run build && npm publish",
"test": "jest src/",
"test:watch": "jest --watch"
},
"peerDependencies": {
"redux": "^5.0.1",
"redux-api-middleware": "^3.2.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.27.7",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"babel-jest": "^30.0.2",
"deep-freeze": "0.0.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^17.3.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"redux": "^5.0.1",
"redux-api-middleware": "^3.2.1",
"rollup": "^4.44.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@jest/types": "^30.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1"
}
}