-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
96 lines (96 loc) · 2.71 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
{
"name": "re-reselect",
"version": "5.1.0",
"description": "Enhance Reselect selectors with deeper memoization and cache management",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"browser": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"test": "jest ./src",
"test:typescript": "tsc --noEmit",
"test:bundles": "npm run test:bundles:snapshot && npm run test:bundles:unit",
"test:bundles:unit": "jest ./src --config ./jest/es.config.js && jest ./src --config ./jest/cjs.config.js && jest ./src --config ./jest/umd.config.js",
"test:bundles:snapshot": "jest ./jest/bundles-snapshot.test.ts",
"test:source": "npm run test:typescript && npm run test -- --coverage",
"test:update": "npm run compile && npm run test:bundles:snapshot -- -u",
"clean": "rimraf dist",
"compile": "npm run clean && rollup -c --bundleConfigAsCjs",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"preversion": "npm run prepare",
"version": "git add package.json",
"postversion": "git push && git push --tags",
"prepare": "npx simple-git-hooks && npm run test:source && npm run compile && npm run test:bundles",
"format": "prettier --write \"**/*.{js,ts,json,md}\""
},
"keywords": [
"react",
"redux",
"reselect",
"memoize",
"cache"
],
"repository": {
"type": "git",
"url": "git+https://github.com/toomuchdesign/re-reselect.git"
},
"author": "Andrea Carraro <me@andreacarraro.it>",
"license": "MIT",
"peerDependencies": {
"reselect": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@rollup/plugin-babel": "^6.0.4",
"@types/jest": "^29.5.12",
"all-contributors-cli": "^6.26.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"reselect": "^5.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"moduleFileExtensions": [
"js",
"ts"
],
"coverageReporters": [
"text",
"lcov"
],
"coveragePathIgnorePatterns": [
"__util__"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write",
"npm t -- ."
],
"**/*.md": [
"prettier --write"
]
}
}