-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "fp-ts-react-stable-hooks",
"version": "1.5.0",
"description": "Stable hooks for react using FP-TS equality checks instead of shallow (reference) object comparison",
"main": "dist/lib/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es2015/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.commonjs.json",
"clean": "rimraf ./dist",
"lint:no-fix": "eslint --config='.eslintrc.js' './src/*.{ts,tsx}' './test/*.{ts,tsx}'",
"lint": "npm run lint:no-fix -- --fix",
"prepublishOnly": "npm run clean && npm run build && npm run test -- --ci --silent && npm run lint:no-fix -- --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mblink/fp-ts-react-stable-hooks.git"
},
"keywords": [
"fp-ts",
"react",
"useState",
"useEffect",
"useStable",
"stable",
"equality",
"deep",
"object",
"comparison"
],
"author": "jleider",
"license": "MIT",
"bugs": {
"url": "https://github.com/mblink/fp-ts-react-stable-hooks/issues"
},
"homepage": "https://github.com/mblink/fp-ts-react-stable-hooks#readme",
"devDependencies": {
"@testing-library/react-hooks": "~7.0.2",
"@types/jest": "~27.4.1",
"@types/react": "^16.8.0",
"@typescript-eslint/eslint-plugin": "~5.13.0",
"@typescript-eslint/parser": "~5.13.0",
"eslint": "~8.10.0",
"fp-ts": "^2.0.0",
"jest": "~27.5.1",
"react": "^16.9.0",
"react-test-renderer": "~16.14.0",
"ts-jest": "~27.1.3",
"typescript": "~4.5.5"
},
"peerDependencies": {
"fp-ts": ">= 2.0.0",
"react": ">= 16.8.0"
}
}