forked from BrowserSync/UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
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
{
"name": "browser-sync-ui",
"description": "User Interface for BrowserSync",
"version": "0.4.4",
"homepage": "http://www.browsersync.io/",
"author": {
"name": "Shane Osbourne"
},
"repository": "shakyshane/browser-sync-ui",
"files": [
"index.js",
"lib",
"public",
"static",
"templates"
],
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/shakyshane/browser-sync-ui/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"backend": "gulp build && mocha test/server",
"e2e": "node test/client/e2e/_setup.js",
"client": "karma start test/client/karma.conf.ci.js",
"pre-release": "npm run backend && npm run e2e",
"test": "npm run backend"
},
"dependencies": {
"angular": "^1.3.11",
"angular-route": "^1.3.8",
"angular-sanitize": "^1.3.11",
"angular-touch": "^1.3.11",
"async-each-series": "^0.1.1",
"connect-history-api-fallback": "0.0.5",
"immutable": "^3.3.0",
"through2": "^0.6.3",
"weinre": "^2.0.0-pre-I0Z7U9OV"
},
"devDependencies": {
"angular-mocks": "^1.3.11",
"browser-sync": "git://github.com/browsersync/browser-sync",
"browserify": "^8.1.1",
"bs-html-injector": "^1.2.1",
"chai": "^1.10.0",
"crossbow": "^0.2.0",
"eazy-logger": "^2.1.0",
"gulp": "^3.8.10",
"gulp-autoprefixer": "2.1.0",
"gulp-contribs": "0.0.2",
"gulp-filter": "^2.0.0",
"gulp-jshint": "^1.9.0",
"gulp-minify-css": "^0.4.3",
"gulp-rename": "^1.2.0",
"gulp-sass": "^1.3.2",
"gulp-svg-sprites": "^2.0.1",
"jquery": "^2.1.3",
"karma": "^0.12.31",
"karma-firefox-launcher": "^0.1.4",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.1.8",
"karma-ng-html2js-preprocessor": "^0.1.2",
"karma-sinon": "^1.0.3",
"mocha": "^2.1.0",
"ng-html2js": "^2.0.0",
"no-abs": "0.0.0",
"pretty-js": "^0.1.8",
"request": "^2.51.0",
"sinon": "^1.12.2",
"supertest": "^0.15.0",
"vinyl-source-stream": "^1.0.0"
},
"keywords": [
"browser sync",
"live reload",
"css injection",
"action sync"
]
}