-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "GosNotification",
"version": "0.1.0",
"description": "GosNotification Client Side of GosNotificationBundle",
"main": "./src/gos-notification.js",
"author": "Johann Saunier <johann_27@hotmail.fr>",
"license": "MIT",
"dependencies": {
"angular": "^1.3.15",
"angular-animate": "^1.3.15",
"angular-moment": "^0.10.0",
"angular-toastr": "^1.2.1",
"ng-scrollbar": "0.0.7"
},
"devDependencies": {
"browser-sync": "^2.6.5",
"browserify": "^9.0.8",
"browserify-ng-html2js": "^1.0.1",
"browserify-shim": "^3.8.5",
"coffeeify": "^1.0.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.2.0",
"gulp-browserify": "^0.5.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeeify": "^0.1.8",
"gulp-concat": "^2.5.2",
"gulp-filter": "^2.0.2",
"gulp-if": "^1.2.5",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.1.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"gulp-watch": "^4.2.4",
"gulp-watch-sequence": "0.0.4",
"lodash.assign": "^3.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.1.0",
"yargs": "^3.8.0"
},
"browser": {
"angular-toastr": "./node_modules/angular-toastr/dist/angular-toastr.js",
"angular-scrollbar": "./external/ng-scrollbar-fix.js"
},
"browserify": {
"transform": [
"browserify-shim",
"coffeeify"
]
},
"browserify-shim": {
"angular-toastr": {
"exports": "angular.module('toastr').name"
},
"angular-scrollbar": {
"exports": "angular.module('ngScrollbar').name"
}
}
}