-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.55 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
{
"name": "@vmw/slices-for-redux",
"version": "0.5.4",
"description": "Slices and SliceGroups that scale. Reduce boilerplate. Split code.",
"author": "VMware, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmware/slices-for-redux/issues"
},
"homepage": "https://github.com/vmware/slices-for-redux#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/vmware/slices-for-redux.git"
},
"keywords": [
"immer",
"modular redux",
"reducer",
"redux",
"rootReducer",
"slice",
"code splitting"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"clean-modules": "rimraf node_modules",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig-esm.json",
"format": "prettier --write \"src/*.ts\" \"**/*.md\"",
"format:check": "prettier --list-different \"src/*.ts\" \"**/*.md\"",
"git-pre-commit": "yarn lint",
"lint": "eslint --ext .js,.ts src --resolve-plugins-relative-to \"node_modules/@vmw/eslint-config-vmware-react\"",
"prepare": "husky install && yarn lint && yarn format:check && yarn test-coverage && yarn build",
"publish:latest": "yarn publish",
"publish:next": "yarn publish --tag next",
"start": "tsc --watch",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"type": "tsc"
},
"peerDependencies": {
"@reduxjs/toolkit": ">=1.6.0 <2"
},
"devDependencies": {
"@reduxjs/toolkit": "1.6.1",
"@types/jest": "27.0.1",
"@typescript-eslint/parser": "4.31.1",
"@vmw/eslint-config-vmware-react": "0.2.5",
"eslint": "7.32.0",
"husky": "6.0.0",
"jest": "27.2.0",
"prettier": "2.4.1",
"tslib": "2.3.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"resolutions": {
"immer": ">=9.0.6",
"path-parse": ">=1.0.7",
"minimist": "1.2.6",
"minimatch" : "^3.0.5",
"json5": "^1.0.2",
"json-schema": "^0.4.0",
"ansi-regex": "^5.0.1",
"tmpl": "^1.0.5"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"sideEffects": false,
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/index.ts"
]
}
}