forked from angular-ui/ui-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 4.53 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
140
141
142
143
144
145
146
147
148
{
"name": "@uirouter/angularjs",
"description": "State-based routing for AngularJS 1.x",
"version": "1.0.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm _doc build release *.log",
"compile": "tsc && tsc -m es6 --outDir lib-esm && npm run fixdts",
"fixdts": "dts-downlevel '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 'release/**/*.js.map'",
"build": "npm run clean && npm run compile && npm run bundle && npm run fixmaps:lib && npm run fixmaps:bundle",
"lint": "eslint src/**/*.ts",
"package": "npm run build&& node ./scripts/npm_package_release",
"bundle": "npm run bundle_router && npm run bundle_monolithic_router && npm run bundle_events && npm run bundle_resolve",
"bundle_monolithic_router": "rollup -c --environment ROUTER,MONOLITHIC && rollup -c --environment ROUTER,MINIFY,MONOLITHIC",
"bundle_router": "rollup -c --environment ROUTER && rollup -c --environment ROUTER,MINIFY",
"bundle_events": "rollup -c --environment EVENTS && rollup -c --environment EVENTS,MINIFY",
"bundle_resolve": "rollup -c --environment RESOLVE && rollup -c --environment RESOLVE,MINIFY",
"test": "tsc && NG=1.7 jest && NG=1.6 jest && NG=1.5 jest && NG=1.4 jest && NG=1.3 jest && NG=1.2 jest",
"test:debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch",
"test:ng12": "NG=1.2 jest",
"test:ng13": "NG=1.3 jest",
"test:ng14": "NG=1.4 jest",
"test:ng15": "NG=1.5 jest",
"test:ng16": "NG=1.6 jest",
"test:ng17": "NG=1.7 jest",
"test:downstream": "test_downstream_projects",
"watch": "jest --watch",
"debug": "npm run test:debug",
"docs": "generate_docs",
"docs:publish": "generate_docs && publish_docs",
"release": "release --deps @uirouter/core && node ./scripts/npm_angular_ui_router_release.js",
"prepublishOnly": "npm run build",
"artifacts": "artifact_tagging"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Nate Abele",
"email": "nate@radify.io",
"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/angular-ui/ui-router.git"
},
"bugs": {
"url": "https://github.com/angular-ui/ui-router/issues"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"main": "release/ui-router-angularjs.js",
"jsnext:main": "lib-esm/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"@uirouter/core": "6.0.8"
},
"peerDependencies": {
"angular-extended": ">=1.0.0"
},
"devDependencies": {
"@types/angular": "1.6.57",
"@types/angular-animate": "^1.5.10",
"@types/angular-mocks": "^1.7.0",
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"@uirouter/publish-scripts": "2.5.5",
"angular-extended": "^1.0.0",
"dts-downlevel": "^0.4.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lodash": "^4.17.19",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.22.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.0.0",
"typescript": "^5.5.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"docgen": {
"publishDir": "_ng1_docs",
"navigation": {
"": [
"UIRouter"
],
"Services": [
"StateService",
"StateRegistry",
"TransitionService",
"UrlService",
"UrlConfig",
"UrlRules"
],
"Interfaces": [
"Ng1StateDeclaration"
],
"Components": [
"uiView",
"UISref",
"UISrefActive",
"uiStateDirective"
],
"Other": [
"Transition",
"Trace"
]
},
"include": [
{
"pkg": "@uirouter/core",
"repo": "https://github.com/ui-router/core",
"branch": "master"
}
]
}
}