UNPKG

angular-ui-router

Version:

State-based routing for AngularJS 1.x

125 lines (124 loc) 4.46 kB
{ "name": "angular-ui-router", "description": "State-based routing for AngularJS 1.x", "version": "1.0.5", "scripts": { "clean": "shx rm -rf lib lib-esm _doc build release *.log", "build": "tsc && tsc -m es6 --outDir lib-esm && npm run fixdts", "fixdts": "dts-downlevel 'lib/**/*.d.ts' 'lib-esm/**/*.d.ts'", "package": "npm run clean && npm run build && npm run bundle", "bundle": "npm run bundle_router && npm run bundle_monolithic_router && npm run bundle_events && npm run bundle_resolve", "bundle_monolithic_router": "rollup -c --environment ROUTER,MONOLITHIC && rollup -c --environment ROUTER,MINIFY,MONOLITHIC", "bundle_router": "rollup -c --environment ROUTER && rollup -c --environment ROUTER,MINIFY", "bundle_events": "rollup -c --environment EVENTS && rollup -c --environment EVENTS,MINIFY", "bundle_resolve": "rollup -c --environment RESOLVE && rollup -c --environment RESOLVE,MINIFY", "install": "node migrate/migratewarn.js", "noimplicitany": "tsc --noEmit --noImplicitAny --moduleResolution node --target es6 test/noimplicitany.ts", "test": "npm run test:integrate", "test:ng12": "karma start --ngversion 1.2", "test:ng13": "karma start --ngversion 1.3", "test:ng14": "karma start --ngversion 1.4", "test:ng15": "karma start --ngversion 1.5", "test:ng16": "karma start --ngversion 1.6", "test:integrate": "tsc && npm run noimplicitany && npm run test:ng16 && npm run test:ng15 && npm run test:ng14 && npm run test:ng13 && npm run test:ng12", "watch": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1", "debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=Chrome", "docs": "./scripts/docs.js", "publishdocs": "node scripts/publishdocs.js", "artifacts": "node scripts/artifact_tagging.js" }, "homepage": "https://ui-router.github.io", "contributors": [ { "name": "Nate Abele", "email": "nate@radify.io", "web": "https://radify.io" }, { "name": "Chris Thielen", "web": "https://github.com/christopherthielen" }, { "name": "Tim Kindberg", "web": "https://github.com/timkindberg" }, { "name": "Karsten Sperling", "web": "https://github.com/ksperling" } ], "maintainers": [ { "name": "UIRouter Team", "web": "https://github.com/ui-router?tab=members" } ], "repository": { "type": "git", "url": "https://github.com/angular-ui/ui-router.git" }, "bugs": { "url": "https://github.com/angular-ui/ui-router/issues" }, "engines": { "node": ">=4.0.0" }, "license": "MIT", "main": "lib/index.js", "jsnext:main": "lib-esm/index.js", "typings": "lib/index.d.ts", "dependencies": { "@uirouter/core": "5.0.5" }, "peerDependencies": { "angular": ">=1.2.0" }, "devDependencies": { "@types/angular": "^1.5.14", "@types/angular-animate": "^1.5.5", "@types/angular-mocks": "^1.5.5", "@types/jasmine": "^2.2.34", "@types/jquery": "^1.10.31", "awesome-typescript-loader": "3.0.0-beta.10", "babel-core": "^5.8.14", "clone": "^1.0.2", "conventional-changelog": "^1.1.0", "conventional-changelog-cli": "^1.1.1", "dts-downlevel": "^0.3.0", "glob": "^7.0.5", "jasmine-core": "^2.4.1", "karma": "^1.2.0", "karma-chrome-launcher": "~0.1.0", "karma-coverage": "^0.5.3", "karma-jasmine": "^1.0.2", "karma-phantomjs-launcher": "^1.0.2", "karma-script-launcher": "~0.1.0", "karma-sourcemap-loader": "^0.3.7", "karma-systemjs": "^0.7.2", "karma-webpack": "^1.8.0", "lodash": "^4.5.1", "readline-sync": "^1.4.5", "remap-istanbul": "^0.6.3", "replace-in-file": "^2.0.3", "rollup": "^0.38.0", "rollup-plugin-node-resolve": "^2.0.0", "rollup-plugin-progress": "^0.1.0", "rollup-plugin-sourcemaps": "^0.4.1", "rollup-plugin-uglify": "^1.0.1", "rollup-plugin-visualizer": "^0.1.5", "shelljs": "^0.7.0", "shx": "^0.1.4", "systemjs": "^0.18.4", "tslint": "^5.1.0", "typedoc": "~0.5.0", "typedoc-plugin-external-module-name": "^1.0.2", "typedoc-plugin-internal-external": "^1.0.0", "typedoc-plugin-ui-router": "^1.0.0", "typescript": "~2.4.0", "ui-router-typedoc-themes": "^1.0.1", "watch": "^0.18.0", "webpack": "1.x", "webpack-dev-server": "1.x", "yargs": "^4.2.0" } }