forked from ui-router/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.78 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
{
"name": "@uirouter/angular",
"description": "State-based routing for Angular",
"version": "1.0.0-beta.7",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles _dec",
"compile": "npm run clean && ngc",
"bundle": "rollup -c && rollup -c --environment MINIFY",
"fixmaps": "modify_sourcemap_paths",
"build": "npm run compile && npm run bundle && npm run fixmaps",
"release": "release",
"travis": "npm run build && npm run noimplicitany && npm run test",
"test": "karma start",
"noimplicitany": "tsc --noEmit --noImplicitAny --moduleResolution node --target es6 test/noimplicitany.ts",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=Chrome",
"package": "npm run build",
"docs": "typedoc --tsconfig tsconfig.typedoc.json --readme README.md --name '@uirouter/angular' --theme node_modules/ui-router-typedoc-themes/bin/default --out _doc --internal-aliases internal,coreapi,ng2api --external-aliases internalapi,external --navigation-label-globals @uirouter/angular",
"publishdocs": "npm run docs && node --harmony scripts/publishdocs.js",
"prepare": "npm run build",
"changelog": "update_changelog",
"artifacts": "artifact_tagging"
},
"homepage": "https://ui-router.github.io/ng2",
"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/ng2.git"
},
"bugs": {
"url": "https://github.com/ui-router/ng2/issues"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"main": "_bundles/ui-router-ng2.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"@uirouter/core": "=5.0.6",
"@uirouter/rx": "=0.4.1",
"tslib": "^1.7.1"
},
"peerDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/router": "^4.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@angular/router": "^4.0.0",
"@types/jasmine": "^2.2.34",
"@types/jquery": "^1.10.31",
"@uirouter/publish-scripts": "^1.0.7",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.1.1",
"jasmine-core": "^2.4.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^0.1.12",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-script-launcher": "~0.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-systemjs": "^0.7.2",
"karma-webpack": "^2.0.2",
"readline-sync": "^1.4.5",
"rollup": "^0.41.4",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-progress": "^0.2.1",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-plugin-visualizer": "^0.2.0",
"rxjs": "5.0.0-beta.12",
"shelljs": "^0.7.0",
"shx": "^0.1.4",
"systemjs": "^0.18.4",
"tslint": "^5.4.3",
"typedoc": "~0.5.0",
"typedoc-plugin-external-module-name": "^1.0.2",
"typedoc-plugin-internal-external": "^1.0.0",
"typedoc-plugin-ui-router": "^1.0.0",
"typescript": "~2.4.1",
"ui-router-typedoc-themes": "^1.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "2.2.0",
"webpack-visualizer-plugin": "^0.1.10",
"zone.js": "^0.6.21"
}
}