UNPKG

router-primitives

Version:

A cross-platform application router. Declarative routing by way of layout primitives

69 lines (68 loc) 2.36 kB
{ "name": "router-primitives", "version": "1.0.0-beta.6", "description": "A cross-platform application router. Declarative routing by way of layout primitives", "main": "./dist/index.cjs.js", "module": "./dist/index.es.js", "types": "./dist/src/index.d.ts", "files": [ "dist" ], "scripts": { "clean": "rimraf coverage build tmp dist", "build": "npm run clean && rollup -c", "build:watch": "npm run clean && rollup -cw", "lint": "eslint . --ext .js,.jsx,.ts,.tsx", "prettier:fix": "prettier \"src/**/*\" --write", "prettier:check": "prettier \"src/**/*\" --check", "test": "jest", "test:watch": "jest --watch", "type-check:watch": "npm run type-check -- --watch", "type-check": "tsc --noEmit", "all-ci": "npm run test && npm run lint && npm run prettier:check && npm run type-check && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/erhathaway/router-primitives.git" }, "keywords": [ "router", "routing", "router primitives", "router state", "router management", "application routing", "primitives", "declarative routing", "layout primitives" ], "author": "Ethan Hathaway", "license": "MIT", "bugs": { "url": "https://github.com/erhathaway/router-primitives/issues" }, "homepage": "https://github.com/erhathaway/router-primitives#readme", "devDependencies": { "@rollup/plugin-commonjs": "^11.0.2", "@rollup/plugin-node-resolve": "^7.1.1", "@types/jest": "^24.0.6", "@typescript-eslint/eslint-plugin": "^2.13.0", "@typescript-eslint/parser": "^2.13.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.9.0", "eslint-plugin-jest": "^23.2.0", "jest": "^23.1.0", "prettier": "^1.18.2", "query-string": "^6.8.3", "rimraf": "^3.0.2", "rollup": "^2.0.6", "rollup-plugin-eslint": "^7.0.0", "rollup-plugin-external-globals": "^0.5.0", "rollup-plugin-typescript2": "^0.26.0", "rollup-watch": "^4.3.1", "ts-jest": "^23.10.5", "typescript": "^3.9.0-beta" }, "dependencies": {}, "peerDependencies": {} }