forked from wailqill/node-livereload
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 901 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 901 Bytes
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.10.3",
"contributors": [
{
"name": "Brian P. Hogan",
"email": "brianhogan@napcs.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/napcs/node-livereload.git"
},
"bin": {
"livereload": "./bin/livereload.js"
},
"main": "./lib/livereload.js",
"dependencies": {
"chokidar": "^4.0.3",
"livereload-js": "^4.0.2",
"opts": "^2.0.2",
"ws": "^8.4.3"
},
"devDependencies": {
"coffeescript": "^2.7.0",
"mocha": "^11.7.1",
"should": "^13.2.1",
"sinon": "^1.17.4"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "npx coffee -c lib",
"make-test-certs": "bash certs.sh",
"test": "npm run build && (rm -f test/tmpfile*; NODE_EXTRA_CA_CERTS=./test/ssl/test-root.pem npx mocha)"
}
}