forked from mmichelli/node-livereload
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
40 lines (40 loc) · 889 Bytes
/
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
{
"name": "livereload",
"description": "LiveReload server",
"version": "0.9.3",
"contributors": [
{
"name": "Brian P. Hogan",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/napcs/node-livereload.git"
},
"bin": {
"livereload": "./bin/livereload.js"
},
"main": "./lib/livereload.js",
"dependencies": {
"chokidar": "^3.5.0",
"livereload-js": "^3.3.1",
"opts": ">= 1.2.0",
"ws": "^7.4.3"
},
"devDependencies": {
"coffee-script": "^1.12",
"mocha": "^5.2.0",
"request": ">= 2.9.203",
"should": "^13.2.1",
"sinon": "^1.17.4"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "node node_modules/coffee-script/bin/coffee -c lib",
"test": "npm run build && (rm test/tmpfile*; mocha 'test/**/*.coffee')"
}
}