This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
119 lines (119 loc) · 2.66 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
112
113
114
115
116
117
118
119
{
"name": "bower-browser",
"version": "0.6.2",
"description": "GUI Bower manager runs on web browser",
"author": {
"name": "Rakuten, Inc."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rakuten-frontend/bower-browser.git"
},
"homepage": "https://github.com/rakuten-frontend/bower-browser",
"bugs": {
"url": "https://github.com/rakuten-frontend/bower-browser/issues"
},
"keywords": [
"bower",
"gui",
"server",
"app"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp test",
"prepublish": "gulp"
},
"main": "lib",
"bin": {
"bower-browser": "bin/bower-browser"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"commander": "^2.5.0",
"connect": "^3.3.3",
"gaze": "^0.5.1",
"is-root": "^1.0.0",
"lodash": "^3.0.0",
"mkdirp": "^0.5.0",
"opn": "^1.0.0",
"request": "^2.51.0",
"serve-static": "^1.8.0",
"socket.io": "^1.2.1",
"update-notifier": "^0.3.1",
"which": "^1.0.8",
"win-spawn": "^2.0.0"
},
"devDependencies": {
"angular": "~1.3.13",
"angular-scroll": "^0.6.4",
"angular-ui-router": "^0.2.13",
"bootstrap-sass": "~3.3.3",
"brfs": "^1.3.0",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.2",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-autoprefixer": "^2.0.0",
"gulp-if": "^1.2.5",
"gulp-jscs": "^1.3.1",
"gulp-jshint": "^1.9.0",
"gulp-livereload": "^3.7.0",
"gulp-load-plugins": "^0.10.0",
"gulp-minify-css": "^1.0.0",
"gulp-mocha": "^2.0.0",
"gulp-nodemon": "^2.0.2",
"gulp-ruby-sass": "^1.0.0-alpha",
"gulp-sourcemaps": "^1.2.8",
"gulp-uglify": "^1.1.0",
"gulp-useref": "^1.1.1",
"gulp-util": "^3.0.3",
"jquery": "~2.1.3",
"jshint-stylish": "^1.0.0",
"lodash-deep": "^1.5.3",
"minimist": "^1.1.0",
"moment": "^2.9.0",
"multipipe": "^0.1.2",
"run-sequence": "^1.0.2",
"socket.io-client": "^1.3.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.2.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"angular": "./node_modules/angular/angular.js",
"angular-scroll": "./node_modules/angular-scroll/angular-scroll.js"
},
"browserify-shim": {
"angular": {
"exports": "angular",
"depends": [
"jquery:jQuery"
]
},
"angular-scroll": {
"exports": "angular.module('duScroll').name",
"depends": [
"angular"
]
},
"bootstrap-sass": {
"depends": [
"jquery:jQuery"
]
}
}
}