-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "crossroad",
"version": "1.3.3",
"description": "A React library to handle navigation easily in your WebApp",
"homepage": "https://crossroad.page/",
"repository": "https://github.com/franciscop/crossroad.git",
"bugs": "https://github.com/franciscop/crossroad/issues",
"funding": "https://www.paypal.me/franciscopresencia/19",
"author": "Francisco Presencia <[email protected]> (https://francisco.io/)",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"size": "echo $(gzip -c index.min.js | wc -c) bytes",
"start": "jest --watch",
"test": "jest --coverage && npx check-dts"
},
"keywords": [
"react",
"router",
"routing",
"javascript",
"hooks"
],
"main": "index.min.js",
"type": "module",
"types": "src/index.d.ts",
"files": [
"src/index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@types/react": "^18.3.4",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"check-dts": "^0.8.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-test": "^0.21.3",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.2.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"jest": {
"testEnvironment": "jsdom"
}
}