forked from NewbranLTD/gulp-server-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.04 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
{
"name": "gulp-server-io",
"version": "1.4.0-beta.9",
"description":
"Create a static server, livereload and a socket.io debugger for your SPA development with gulp",
"homepage": "https://newbran.ch",
"author": {
"name": "NEWBRAN.CH",
"email": "[email protected]",
"url": "https://newbran.ch"
},
"files": ["src", "index.js", "server.js", "gulp.js", "cli.js", "export.js"],
"main": "index.js",
"keywords": [
"node",
"connect",
"server",
"express",
"livereload",
"socket.io",
"gulp",
"development",
"SPA",
"deployment"
],
"devDependencies": {
"coveralls": "^3.0.0",
"debug": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^23.0.0-alpha.0",
"lint-staged": "^7.0.4",
"nsp": "^3.2.1",
"prettier": "^1.12.1",
"supertest": "^3.0.0"
},
"scripts": {
"prepublish-Only": "nsp check",
"pretest": "eslint . --fix",
"precommit": "lint-staged",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest --runInBand --forceExit",
"meow": "node ./cli-meow.js",
"dev": "node ./__tests__/examples/site.js",
"socket": "jest standalone/1-basic.test.js",
"cli-test": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest main/4-fallback.test.js",
"gulp-example":
"DEBUG=gulp-webserver-io:stream-watcher gulp wire --gulpfile ./__tests__/examples/gulpfile.js",
"standalone-example": "node ./__tests__/examples/standalone.js",
"test:part": "jest --forceExit ./__tests__/main/2-custom-a.test.js",
"example": "NODE_ENV=testx node ./__tests__/examples/index.js"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
},
"repository": "[email protected]:NewbranLTD/gulp-server-io.git",
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": ["/fixtures/", "/examples/"],
"collectCoverage": true
},
"license": "MIT",
"dependencies": {
"baconjs": "^2.0.7",
"body-parser": "^1.18.2",
"chalk": "^2.4.0",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^2.0.3",
"express": "^4.16.3",
"express-interceptor": "^1.2.0",
"fancy-log": "^1.3.2",
"fs-extra": "^5.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"helmet": "^3.12.0",
"http-proxy-middleware": "^0.18.0",
"json-server": "^0.12.1",
"lodash": "^4.17.5",
"meow": "^4.0.0",
"morgan": "^1.9.0",
"opn": "^5.3.0",
"reload": "^2.2.2",
"socket.io": "^2.1.0",
"stacktrace-js": "^2.0.0",
"through2": "^2.0.3",
"vinyl": "^2.1.0",
"yargs": "^11.0.0"
},
"bin": {
"gulp-server-io": "./cli.js"
},
"engines": {
"node": ">=7.00"
}
}