forked from avevlad/gulp-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.28 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": "gulp-connect",
"version": "5.0.0",
"description": "Gulp plugin to run a webserver (with LiveReload)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/avevlad/gulp-connect"
},
"authors": [
{
"name": "Vladislav Derjavin",
"email": "[email protected]",
"url": "http://vld.me/"
},
{
"name": "Johannes Schickling",
"email": "[email protected]",
"url": "http://schickling.me/"
},
{
"name": "Justin Chase",
"email": "[email protected]",
"url": "http://justinmchase.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/AveVlad/gulp-connect/graphs/contributors"
}
],
"scripts": {
"test": "mocha",
"pretest": "coffee -o . -bc src/"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"gulpfriendly",
"connect",
"livereload",
"webserver",
"server"
],
"dependencies": {
"connect": "^2.30.0",
"connect-livereload": "^0.5.4",
"event-stream": "^3.3.2",
"gulp-util": "^3.0.6",
"send": "^0.13.2",
"tiny-lr": "^0.2.1"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"gulp": "^3.9.0",
"gulp-stylus": "^2.1.1",
"mocha": "^2.3.4",
"supertest": "^1.1.0"
}
}