-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@hyper-ui/router",
"description": "Official router for hyper-ui.",
"version": "0.2.0",
"main": "dist/hyper-ui.router.umd.min.js",
"module": "dist/hyper-ui.router.min.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rd /q /s dist typings raw || exit 0",
"build": "tsc && rollup -c",
"postbuild": "terser dist/hyper-ui.router.js --config-file terser.json --module -o dist/hyper-ui.router.min.js && terser dist/hyper-ui.router.umd.js --config-file terser.json -o dist/hyper-ui.router.umd.min.js",
"test": "cd test && tsc"
},
"license": "MIT",
"author": "3h",
"repository": "hyper-ui/router",
"bugs": {
"url": "https://github.com/hyper-ui/router/issues"
},
"homepage": "https://github.com/hyper-ui/router#readme",
"keywords": [
"hyper-ui",
"router",
"route",
"client",
"routing",
"history",
"hash",
"local",
"hui",
"3h"
],
"files": [
"dist",
"typings",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@hyper-ui/core": "^0.17.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"terser": "^3.14.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"@hyper-ui/core": ">=0.17.0 <1.0.0"
}
}