-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@uirouter/sticky-states",
"description": "UI-Router Sticky States: Keep states and their components alive while a different state is activated",
"version": "1.5.1",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run clean && tsc && tsc -m es6 -outDir lib-esm && npm run bundle",
"bundle": "rollup -c",
"test": "karma start",
"test:downstream": "npm run build && test_downstream_projects",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
"watch:test": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
"prepublishOnly": "npm run build",
"release": "release",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=ChromeCanary --beep"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"maintainers": [
{
"name": "UIRouter Team",
"web": "https://github.com/ui-router?tab=members"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ui-router/sticky-states.git"
},
"bugs": {
"url": "https://github.com/ui-router/sticky-states/issues"
},
"engines": {
"node": ">=4.0.0"
},
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"peerDependencies": {
"@uirouter/core": ">=5.0.1"
},
"devDependencies": {
"@types/jasmine": "5.1.4",
"@types/lodash": "4.14.150",
"@uirouter/core": "^6.0.5",
"@uirouter/publish-scripts": "^2.6.3",
"husky": "^4.2.5",
"jasmine-core": "^3.1.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-super-dots-reporter": "^0.2.0",
"karma-webpack": "^5.0.1",
"lodash": "^4.17.21",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.7.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-uglify": "^6.0.1",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.2.0",
"typescript": "^5.4.5",
"webpack": "^5.93.0"
},
"dependencies": {},
"resolutions": {
"chokidar": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}