-
-
Notifications
You must be signed in to change notification settings - Fork 636
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.47 KB
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
{
"name": "inferno-router",
"version": "9.0.10",
"license": "MIT",
"type": "module",
"description": "Provides routing functionality for Inferno",
"author": {
"name": "Dominic Gannaway",
"email": "dg@domgan.com"
},
"bugs": {
"url": "https://github.com/infernojs/inferno/issues"
},
"homepage": "https://github.com/infernojs/inferno#readme",
"files": [
"index.cjs",
"dist/",
"README.md",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./index.cjs",
"types": "./dist/index.d.ts"
},
"./dist/index.dev.mjs": "./dist/index.dev.mjs",
"./dist/index.mjs": "./dist/index.mjs"
},
"module": "dist/index.mjs",
"dev:module": "dist/index.dev.mjs",
"typings": "dist/index.d.ts",
"keywords": [
"babel",
"react",
"inferno",
"framework",
"interfaces",
"user interfaces",
"router"
],
"repository": {
"type": "git",
"url": "https://github.com/infernojs/inferno.git",
"directory": "packages/inferno-router"
},
"peerDependencies": {
"history": "^5.3.0"
},
"dependencies": {
"history": "^5.3.0",
"inferno": "9.0.10",
"path-to-regexp": "^8.3.0"
},
"devDependencies": {
"inferno-server": "9.0.10",
"inferno-vnode-flags": "9.0.10",
"mobx": "*"
},
"rollup": {
"bundledDependencies": [
"inferno-shared"
],
"moduleName": "Inferno.Router",
"moduleGlobals": {
"inferno": "Inferno"
}
}
}