-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "angular-ui-router-helper",
"version": "0.0.10",
"description": "## Motivation Angular UI Router provides a great API to define routes and the view heirarchy of an angular project. However it can be clumsy to use when there are many states in a project or when you want to define reusable middlewares: validate credentials, redirecting a user, registering states with other providers (ie for a menu), or changing page layouts.",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git://github.com/kingkevin/angular-ui-router-helper.git"
},
"author": "Kevin King",
"license": "ISC",
"bugs": {
"url": "https://github.com/kingkevin/angular-ui-router-helper/issues"
},
"homepage": "https://github.com/kingkevin/angular-ui-router-helper",
"dependencies": {
"gulp": "^3.7.0"
},
"devDependencies": {
"gulp": "^3.7.0",
"karma": "^0.12.16",
"gulp-karma": "0.0.4",
"karma-jasmine": "^0.1.5",
"karma-chrome-launcher": "^0.1.4",
"karma-phantomjs-launcher": "^0.1.4"
}
}