forked from angular-ui/ui-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.88 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
{
"name": "@uirouter/angularjs",
"description": "State-based routing for AngularJS 1.x",
"version": "1.0.14",
"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",
"package": "npm run build",
"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 && npm run test:ng16 && npm run test:ng15 && npm run test:ng14 && npm run test:ng13 && npm run test:ng12",
"test:ng12": "karma start --ngversion 1.2",
"test:ng13": "karma start --ngversion 1.3",
"test:ng14": "karma start --ngversion 1.4",
"test:ng15": "karma start --ngversion 1.5",
"test:ng16": "karma start --ngversion 1.6",
"test:downstream": "npm run build && test_downstream_projects",
"watch": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=Chrome",
"docs": "generate_docs && publish_docs",
"release": "release --deps @uirouter/core && node ./scripts/bower_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",
"typings": "lib/index.d.ts",
"dependencies": {
"@uirouter/core": "5.0.16"
},
"peerDependencies": {
"angular": ">=1.2.0"
},
"devDependencies": {
"@types/angular": "1.6.25",
"@types/angular-animate": "1.5.9",
"@types/angular-mocks": "1.5.11",
"@types/jasmine": "2.8.6",
"@types/jquery": "3.3.0",
"@uirouter/publish-scripts": "2.3.1",
"dts-downlevel": "0.3.0",
"fork-ts-checker-webpack-plugin": "0.3.0",
"jasmine-core": "3.0.0",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.9",
"lodash": "4.17.5",
"rollup": "0.55.3",
"rollup-plugin-node-resolve": "3.0.2",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "3.0.0",
"shelljs": "0.8.1",
"shx": "0.2.2",
"ts-loader": "3.5.0",
"tslint": "5.9.1",
"tslint-eslint-rules": "4.1.1",
"typescript": "2.7.1",
"webpack": "3.10.0"
}
}