-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "combine-selectors-redux",
"version": "0.0.2",
"description": "Utility function for combining selectors when working with redux. Much like combineReducers it helps for defining selector functions within the reducers.",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"files": [
"lib",
"src",
"es"
],
"repository": "git@github.com:tapayne88/combine-selectors-redux.git",
"author": "Tom Payne",
"license": "MIT",
"keywords": [
"redux",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"flux",
"reselect"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
},
"scripts": {
"compile:clean": "rm -rf ./lib ./es",
"compile:commonjs": "yarn tsc --module commonjs --outDir ./lib",
"compile:es": "yarn tsc",
"compile": "yarn compile:clean && yarn compile:commonjs && yarn compile:es",
"lint:check": "eslint --ext .ts,.js --ignore-path .gitignore .",
"lint": "yarn lint:check --fix",
"jest": "jest",
"prepublishOnly": "yarn test && yarn compile",
"postpublish": "git push && git push --tags",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{ts,js,json,yml,md}\"",
"prettier": "yarn prettier:check --write",
"tsc": "tsc",
"typecheck": "yarn tsc --noEmit",
"test": "yarn lint:check && yarn prettier:check && yarn typecheck && yarn jest"
},
"prettier": {},
"jest": {
"roots": [
"src"
],
"preset": "ts-jest"
}
}