forked from ui-router/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.09 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
{
"name": "ui-router-ng2",
"description": "State-based routing for Angular 2",
"version": "1.0.0-beta.4",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles _dec",
"compile": "npm run clean && ngc",
"bundle": "rollup -c && rollup -c --environment MINIFY",
"package": "npm run bundle",
"build": "npm run compile && npm run bundle",
"docs": "typedoc --tsconfig tsconfig.typedoc.json --readme README.md --name 'ui-router-ng2' --theme node_modules/ui-router-typedoc-themes/bin/default --out _doc --internal-aliases internal,coreapi,ng2api --external-aliases internalapi,external --navigation-label-globals ui-router-ng2",
"prepublish": "npm run build"
},
"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"
},
"license": "MIT",
"main": "_bundles/ui-router-ng2.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"ui-router-core": "=4.0.0",
"ui-router-rx": "=0.2.1"
},
"peerDependencies": {
"@angular/common": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/router": "^3.3.1"
},
"devDependencies": {
"@angular/common": "^2.3.1",
"@angular/compiler": "^2.3.1",
"@angular/compiler-cli": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/platform-browser": "^2.3.1",
"@angular/platform-browser-dynamic": "^2.3.1",
"@angular/platform-server": "^2.3.1",
"@angular/router": "^3.3.1",
"@types/jasmine": "^2.2.34",
"@types/jquery": "^1.10.31",
"awesome-typescript-loader": "^2.2.4",
"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.2.0",
"karma-chrome-launcher": "~0.1.0",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-script-launcher": "~0.1.0",
"karma-systemjs": "^0.7.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": "=2.5.0",
"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.0.3",
"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"
}
}