UNPKG

2.42 kBJSONView Raw
1{
2 "name": "@uirouter/sticky-states",
3 "description": "UI-Router Sticky States: Keep states and their components alive while a different state is activated",
4 "version": "1.5.1",
5 "scripts": {
6 "clean": "shx rm -rf lib lib-esm _bundles",
7 "build": "npm run clean && tsc && tsc -m es6 -outDir lib-esm && npm run bundle",
8 "bundle": "rollup -c",
9 "test": "karma start",
10 "test:downstream": "npm run build && test_downstream_projects",
11 "watch": "run-p watch:*",
12 "watch:buildjs": "tsc -w",
13 "watch:test": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
14 "prepublishOnly": "npm run build",
15 "release": "release",
16 "debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=ChromeCanary --beep"
17 },
18 "homepage": "https://ui-router.github.io",
19 "contributors": [
20 {
21 "name": "Chris Thielen",
22 "web": "https://github.com/christopherthielen"
23 }
24 ],
25 "maintainers": [
26 {
27 "name": "UIRouter Team",
28 "web": "https://github.com/ui-router?tab=members"
29 }
30 ],
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/ui-router/sticky-states.git"
34 },
35 "bugs": {
36 "url": "https://github.com/ui-router/sticky-states/issues"
37 },
38 "engines": {
39 "node": ">=4.0.0"
40 },
41 "main": "lib/index.js",
42 "module": "lib-esm/index.js",
43 "typings": "lib/index.d.ts",
44 "license": "MIT",
45 "peerDependencies": {
46 "@uirouter/core": ">=5.0.1"
47 },
48 "devDependencies": {
49 "@types/jasmine": "3.4.0",
50 "@types/lodash": "4.14.138",
51 "@uirouter/core": "^5.0.22",
52 "@uirouter/publish-scripts": "^2.3.33",
53 "husky": "^3.0.0",
54 "jasmine-core": "^3.1.0",
55 "karma": "^4.0.0",
56 "karma-chrome-launcher": "^3.1.0",
57 "karma-jasmine": "^2.0.1",
58 "karma-mocha-reporter": "^2.2.5",
59 "karma-sourcemap-loader": "^0.3.7",
60 "karma-super-dots-reporter": "^0.2.0",
61 "karma-webpack": "^4.0.2",
62 "lodash": "^4.17.10",
63 "prettier": "^1.11.1",
64 "pretty-quick": "^1.8.1",
65 "rollup": "^1.1.0",
66 "rollup-plugin-node-resolve": "^5.2.0",
67 "rollup-plugin-sourcemaps": "^0.4.2",
68 "rollup-plugin-uglify": "^6.0.1",
69 "ts-loader": "^6.0.4",
70 "tslint": "^5.12.1",
71 "tslint-eslint-rules": "^5.2.0",
72 "typescript": "^3.2.2",
73 "webpack": "^4.28.4"
74 },
75 "dependencies": {},
76 "husky": {
77 "hooks": {
78 "pre-commit": "pretty-quick --staged"
79 }
80 }
81}