-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "simple-router",
"version": "1.0.0-alpha",
"description": "Simple and minimal routing library for react and other SPAs",
"main": "src/simple-router.js",
"types": "src/types.d.ts",
"scripts": {
"test": "jest",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naikus/simple-router.git"
},
"keywords": [
"router",
"react router",
"routing"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/naikus/simple-router/issues"
},
"homepage": "https://github.com/naikus/simple-router#readme",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-block-scoping": "^7.25.0",
"@babel/plugin-transform-modules-umd": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@tsconfig/recommended": "^1.0.7",
"eslint": "^7.9.0",
"eslint-config-google": "~0.9.1",
"eslint-plugin-promise": "~3.6.0",
"eslint-plugin-standard": "~3.0.1",
"jest": "^29.3.1"
},
"dependencies": {
"path-to-regexp": "^8.1.0"
}
}