-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
103 lines (103 loc) · 3.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "electron-redux",
"version": "0.0.0-dev.0",
"description": "Redux & Electron: Make sure all your stores are on the same page",
"repository": "https://github.com/klarna/electron-redux.git",
"authors": [
"Burkhard Reffeling <[email protected]> (https://github.com/hardchor)",
"McKayla Washburn <[email protected]> (https://github.com/partheseas)",
"Maciej Malkowski <[email protected]> (https://github.com/matmalkowski)"
],
"license": "MIT",
"private": false,
"main": "lib/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"es",
"types",
"main",
"renderer",
"preload"
],
"scripts": {
"clean": "rimraf lib es coverage types",
"build": "rollup -c",
"build:examples": "run-p build:examples:*",
"build:examples:basic": "cd ./examples/basic && yarn",
"check-types": "tsc --noEmit",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"pretest": "yarn build && yarn build:examples",
"commit": "cz"
},
"engines": {
"node": ">= 12"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1"
},
"peerDependencies": {
"electron": ">=8.0.0",
"redux": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-commonjs": "^15.0.0",
"@types/jest": "^26.0.14",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.isstring": "^4.0.6",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "3.3.0",
"electron": "^9.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.27.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.27.2",
"semantic-release": "^17.2.1",
"spectron": "^11.1.0",
"typescript": "^4.0.3",
"typings-tester": "^0.3.2"
},
"npmName": "electron-redux",
"jest": {
"testRegex": "(/tests/.*\\.spec\\.[tj]s)$"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}