-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
139 lines (139 loc) · 3.5 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
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@uirouter/angular",
"description": "State-based routing for Angular",
"version": "15.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": "jest --rootDir test",
"test:watch": "jest --rootDir test --watchAll",
"test:debug": "node --inspect-brk node_modules/.bin/jest --rootDir test --runInBand",
"test:downstream": "test_downstream_projects",
"docs": "generate_docs",
"docs:publish": "generate_docs && publish_docs",
"prepublishOnly": "echo && echo DO NOT RUN npm publish. Instead, run npm run release && echo && echo && false",
"changelog": "update_changelog --include-core"
},
"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": "^18.0.0",
"@angular/core": "^18.0.0",
"@uirouter/core": "^6.0.8",
"@uirouter/rx": "^1.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.0",
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@types/jest": "^27.0.3",
"@types/jquery": "^3.5.9",
"@types/node": "^20.11.4",
"@uirouter/core": "^6.0.8",
"@uirouter/publish-scripts": "2.6.2",
"@uirouter/rx": "^1.0.0",
"husky": "^7.0.4",
"jest": "^29.0.0",
"jest-preset-angular": "^14.1.1",
"ng-packagr": "^18.0.0",
"postcss": "^8.0.0",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"rxjs": "~7.8.0",
"rxjs-compat": "^6.5.4",
"schema-utils": "^4.0.0",
"ts-node": "10.4.0",
"tslib": "^2.3.0",
"tslint": "^6.1.0",
"typescript": "~5.4.5",
"zone.js": "~0.14.0"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"./setupJest.ts"
]
},
"checkPeerDependencies": {
"ignore": [
"ajv"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"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"
}
]
}
}