forked from BrowserSync/browser-sync-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "browser-sync-client",
"description": "Client-side scripts for BrowserSync",
"version": "2.4.2",
"homepage": "https://github.com/shakyshane/browser-sync-client",
"author": {
"name": "Shane Osbourne",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/shakyshane/browser-sync-client.git"
},
"bugs": {
"url": "https://github.com/shakyshane/browser-sync-client/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shakyshane/browser-sync-client/blob/master/LICENSE-MIT"
}
],
"main": "index.js",
"files": [
"dist",
"index.js"
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "gulp && npm run mocha && npm run karma",
"mocha": "mocha test/middleware",
"karma": "karma start test/karma.conf.ci.js"
},
"devDependencies": {
"browser-sync": "^2.9.11",
"browserify": "^11.2.0",
"chai": "~1.9.0",
"express": "^4.12.3",
"gulp": "^3.8.11",
"gulp-contribs": "0.0.2",
"gulp-jshint": "~1.4.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^0.2.1",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.1.3",
"karma-coverage": "^0.2.1",
"karma-firefox-launcher": "^0.1.4",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "~0.1.1",
"karma-sinon": "~1.0.0",
"mocha": "^1.18.2",
"sinon": "~1.8.2",
"supertest": "^0.10.0",
"through2": "^0.4.1",
"vinyl-source-stream": "^1.1.0"
},
"keywords": [],
"dependencies": {
"etag": "^1.7.0",
"fresh": "^0.3.0"
}
}