-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "use-back",
"version": "1.0.1",
"description": "React Router DOM hook for navigating back without leaving your website",
"keywords": [
"react",
"react-router",
"router",
"back",
"hook"
],
"homepage": "https://github.com/evelynhathaway/use-back#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/use-back/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/use-back.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "/lib"
},
"files": [
"/lib"
],
"scripts": {
"build": "tsc -p ./tsconfig-build.json",
"lint": "eslint ./",
"prepare": "husky install",
"test": "jest"
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"release": {
"extends": "conventional-changelog-evelyn/release.config.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.17",
"commitlint": "^17.0.3",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^8.22.0",
"eslint-plugin-evelyn": "^8.0.1",
"husky": "^8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-location-mock": "^1.0.9",
"lint-staged": "^13.0.3",
"semantic-release": "^19.0.3",
"sort-package-json": "^1.57.0",
"ts-jest": "28.0.8",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0-beta.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}