-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
128 lines (128 loc) · 3.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@uirouter/core",
"description": "UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps",
"version": "6.1.1",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles .cache _doc",
"compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm",
"build": "run-s compile fixdts bundle fixmaps:*",
"bundle": "rollup -c && rollup -c --environment MINIFY",
"fixdts": "dts-downlevel --semver '>=2.2.0' 'lib/**/*.d.ts' 'lib-esm/**/*.d.ts'",
"fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-esm/**/*.js.map'",
"fixmaps:bundle": "tweak_sourcemap_paths -a --include '_bundles/**/*.js.map'",
"prepublishOnly": "npm run build",
"test": "karma start",
"test:downstream": "test_downstream_projects",
"docs": "generate_docs",
"docs:publish": "generate_docs && publish_docs",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
"watch:buildesm": "tsc -w -m es6 --outDir lib-esm",
"watch:dts-downlevel": "npm run fixdts",
"watch:test": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=ChromeCanary",
"changelog": "show_changelog",
"release": "release"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Nate Abele",
"email": "[email protected]",
"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/ui-router/core.git"
},
"bugs": {
"url": "https://github.com/ui-router/core/issues"
},
"engines": {
"node": ">=4.0.0"
},
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"jsnext:main": "lib-esm/index.js",
"module": "lib-esm/index.js",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/jquery": "^3.3.36",
"@uirouter/publish-scripts": "^2.6.3",
"bufferutil": "4.0.2",
"dts-downlevel": "^0.4.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"husky": "^4.2.5",
"jasmine-core": "^3.3.0",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-script-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"eslint": "^8.57.0",
"@typescript-eslint/parser": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"rollup": "1.32.1",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-sourcemaps": "^0.6.1",
"rollup-plugin-uglify": "^6.0.0",
"ts-loader": "^8.0.12",
"typescript": "~5.4.5",
"utf-8-validate": "5.0.3",
"webpack": "^5.92.1"
},
"resolutions": {
"chokidar": "3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"docgen": {
"publishDir": "_core_docs",
"include": [],
"navigation": {
"": [
"UIRouter"
],
"Services": [
"StateService",
"StateRegistry",
"TransitionService",
"UrlService",
"UrlConfig",
"UrlRules"
],
"Other": [
"Transition",
"Trace"
]
}
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}