-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.23 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
{
"name": "browser-sync-ui",
"description": "User Interface for BrowserSync",
"version": "0.0.13",
"homepage": "http://www.browsersync.io/",
"author": {
"name": "Shane Osbourne"
},
"repository": "shakyshane/browser-sync-ui",
"bugs": {
"url": "https://github.com/shakyshane/browser-sync-ui/issues"
},
"files": [
"index.js",
"lib",
"public",
"static/_components",
"templates",
"LICENCE",
"README.md"
],
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/shakyshane/browser-sync-ui/blob/master/LICENSE"
}
],
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"backend": "gulp build && mocha test/server",
"e2e": "node test/client/e2e/_setup.js",
"client": "./node_modules/karma/bin/karma start test/client/karma.conf.ci.js",
"pre-release": "npm run backend && npm run e2e",
"test": "npm run backend"
},
"dependencies": {
"angular": "^1.3.8",
"angular-route": "^1.3.8",
"angular-sanitize": "^1.3.8",
"angular-touch": "^1.3.8",
"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.8",
"async": "^0.9.0",
"browser-sync": "git://github.com/shakyshane/browser-sync#v2-rc2.7",
"bs-html-injector": "^1.2.1",
"chai": "^1.9.1",
"crossbow": "^0.2.0",
"eazy-logger": "^1.5.0",
"gulp": "^3.8.7",
"gulp-autoprefixer": "0.0.8",
"gulp-browserify": "^0.5.0",
"gulp-contribs": "0.0.2",
"gulp-filter": "^1.0.2",
"gulp-jshint": "^1.8.4",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
"gulp-sass": "^1.2.4",
"gulp-svg-sprites": "^2.0.1",
"jquery": "^2.1.3",
"karma": "^0.12.22",
"karma-firefox-launcher": "^0.1.3",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.1.8",
"karma-ng-html2js-preprocessor": "^0.1.0",
"karma-sinon": "^1.0.3",
"mocha": "^1.21.4",
"ng-html2js": "^1.2.0",
"no-abs": "0.0.0",
"pretty-js": "^0.1.8",
"sinon": "^1.10.3",
"supertest": "^0.14.0"
},
"keywords": [
"browser sync",
"live reload",
"css injection",
"action sync"
]
}