-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "@tracktl/redux-promise-middleware",
"version": "0.2.0",
"license": "MIT",
"author": "Tracktl <dev@tracktl.com> (https://app.tracktl.com/)",
"repository": "git@github.com:Tracktl/redux-promise-middleware.git",
"homepage": "https://github.com/Tracktl/redux-promise-middleware#readme",
"bugs": {
"url": "https://github.com/Tracktl/redux-promise-middleware/issues"
},
"main": "dist/index.js",
"umd:main": "dist/redux-promise-middleware.umd.production.js",
"module": "dist/redux-promise-middleware.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format=cjs,esm,umd",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build --format=cjs,esm,umd && husky install",
"semantic-release": "semantic-release"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "all",
"singleQuote": true
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "27.4.0",
"@types/node": "17.0.13",
"husky": "7.0.4",
"redux": "4.1.2",
"semantic-release": "19.0.2",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "4.5.5"
},
"dependencies": {},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "5.11.0",
"**/@typescript-eslint/parser": "5.11.0",
"**/jest": "27.5.1",
"**/ts-jest": "27.1.3",
"**/typescript": "4.5.5"
}
}