-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.46 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.46 KB
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
{
"name": "@uirouter/angular",
"description": "State-based routing for Angular",
"version": "21.0.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles _doc dist",
"compile": "npm run clean && ngc",
"build": "ng-packagr -p ng-package.json",
"release": "release --deps @uirouter/core @uirouter/rx",
"check-peer-dependencies": "check-peer-dependencies",
"test": "npm run test:zone && npm run test:zoneless",
"test:zone": "vitest run --project zone",
"test:zone:watch": "vitest watch --project zone",
"test:zone:debug": "vitest --project zone --no-file-parallelism --inspect-brk",
"test:downstream": "test_downstream_projects",
"test:zoneless": "vitest run --project zoneless",
"test:zoneless:watch": "vitest watch --project zoneless",
"docs": "generate_docs",
"docs:publish": "generate_docs && publish_docs",
"lint": "eslint src test",
"prepublishOnly": "echo && echo DO NOT RUN npm publish. Instead, run npm run release && echo && echo && false",
"changelog": "update_changelog --include-core",
"prepare": "husky"
},
"homepage": "https://ui-router.github.io/angular",
"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/angular.git"
},
"bugs": {
"url": "https://github.com/ui-router/angular/issues"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"distDir": "dist",
"peerDependencies": {
"@angular/common": "^21.0.0",
"@angular/core": "^21.0.0",
"@uirouter/core": "^6.1.2",
"@uirouter/rx": "^1.0.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.2.0",
"@analogjs/vitest-angular": "^2.2.0",
"@angular-devkit/architect": "^0.2100.0",
"@angular-devkit/build-angular": "^21.0.4",
"@angular/common": "^21.0.3",
"@angular/compiler": "^21.0.3",
"@angular/compiler-cli": "^21.0.3",
"@angular/core": "^21.0.3",
"@angular/platform-browser": "^21.0.3",
"@angular/platform-browser-dynamic": "^21.0.3",
"@types/node": "^24.10.1",
"@uirouter/core": "^6.1.2",
"@uirouter/publish-scripts": "2.7.0",
"@uirouter/rx": "^1.0.0",
"husky": "^9.0.0",
"jsdom": "^27.4.0",
"ng-packagr": "^21.0.0",
"prettier": "^3.4.0",
"pretty-quick": "^4.0.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"typescript-eslint": "^8.33.0",
"typescript": "~5.9.3",
"vitest": "^4.0.8",
"zone.js": "~0.16.0"
},
"docgen": {
"publishDir": "_ng2_docs",
"navigation": {
"": [
"UIRouter"
],
"Services": [
"StateService",
"StateRegistry",
"TransitionService",
"UrlService",
"UrlConfig",
"UrlRules"
],
"Interfaces": [
"Ng2StateDeclaration",
"UiOnParamsChanged",
"UiOnExit"
],
"Components": [
"UIView",
"UISref",
"UISrefActive"
],
"Other": [
"Transition",
"Trace"
]
},
"include": [
{
"pkg": "@uirouter/core",
"repo": "https://github.com/ui-router/core",
"branch": "master"
},
{
"pkg": "@uirouter/rx",
"repo": "https://github.com/ui-router/rx"
}
]
}
}