forked from oauthjs/angular-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "angular-oauth2",
"version": "3.0.1",
"description": "Angular OAuth2",
"main": "./dist/angular-oauth2.js",
"repository": {
"type": "git",
"url": "https://github.com/seegno/angular-oauth2.git"
},
"keywords": [
"AngularJS",
"Authentication",
"OAuth2"
],
"author": {
"name": "Seegno",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/seegno/angular-oauth2/issues"
},
"homepage": "https://github.com/seegno/angular-oauth2",
"devDependencies": {
"6to5ify": "^3.1.2",
"angular-mocks": "^1.3.9",
"bower": "^1.3.12",
"github-changes": "^1.0.0",
"gulp": "^3.8.10",
"gulp-6to5": "^2.0.2",
"gulp-concat": "^2.4.3",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.9.0",
"gulp-ng-annotate": "^0.4.4",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.2",
"gulp-wrap-umd": "^0.2.1",
"jshint-stylish": "^1.0.0",
"karma": "^0.12.31",
"karma-browserify": "^2.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^0.3.1",
"karma-should": "0.0.1",
"karma-sinon": "^1.0.4",
"lodash": "^2.4.1",
"should": "^4.6.0",
"yargs": "^3.6.0"
},
"browser": {
"angular": "./bower_components/angular/angular.js",
"angular-cookies": "./bower_components/angular-cookies/angular-cookies.js",
"ngstorage": "./bower_components/ngstorage/ngStorage.js",
"query-string": "./bower_components/query-string/query-string.js"
},
"scripts": {
"changelog": "./node_modules/.bin/github-changes -o seegno -r angular-oauth2 -a --only-pulls --use-commit-body --title 'Changelog' --date-format '/ YYYY-MM-DD'",
"test": "./node_modules/.bin/gulp test --browsers Firefox"
},
"browserify-shim": {
"angular": {
"exports": "angular"
}
}
}