UNPKG

1.25 kBJSONView Raw
1{
2 "name": "@curi/router",
3 "version": "1.0.0-beta.37",
4 "description": "A JavaScript router that doesn't care how you render",
5 "main": "dist/curi-router.common.js",
6 "module": "dist/curi-router.es.js",
7 "types": "types/index.d.ts",
8 "files": [
9 "dist",
10 "types",
11 "LICENSE",
12 "*.md"
13 ],
14 "scripts": {
15 "prebuild": "rimraf dist types",
16 "build": "node ./scripts/build",
17 "coverage": "jest --coverage",
18 "prepare": "npm run build",
19 "prepublishOnly": "npm test",
20 "prettier": "prettier --single-quote --write \"{src,tests}/**/*.ts\"",
21 "test": "jest"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/pshrmn/curi/tree/master/packages/router"
26 },
27 "keywords": [
28 "URL",
29 "URI",
30 "routing",
31 "navigation"
32 ],
33 "author": "Paul Sherman",
34 "license": "MIT",
35 "dependencies": {
36 "@hickory/root": "1.0.0-beta.8",
37 "path-to-regexp": "^2.1.0"
38 },
39 "devDependencies": {
40 "@hickory/in-memory": "1.0.0-beta.5",
41 "@types/jest": "^22.0.1",
42 "@types/node": "^8.0.53",
43 "jest": "^22.1.1",
44 "prettier": "^1.10.2",
45 "rimraf": "^2.6.2",
46 "rollup": "^0.58.1",
47 "rollup-plugin-typescript2": "^0.14.0",
48 "ts-jest": "^21.2.3",
49 "typescript": "^2.6.1"
50 }
51}