-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "reload",
"version": "3.3.0",
"files": [
"bin",
"lib",
"index.js"
],
"description": "Node.js module to refresh and reload your code in your browser when your code changes. No browser plugins required.",
"repository": {
"type": "git",
"url": "[email protected]:alallier/reload.git"
},
"keywords": [
"reload",
"refresh",
"http",
"express",
"development"
],
"author": "JP Richardson <[email protected]>",
"contributors": [
"Alexander J. Lallier <[email protected]>"
],
"license": "MIT",
"dependencies": {
"cli-color": "~2.0.0",
"commander": "~12.1.0",
"finalhandler": "~1.2.0",
"minimist": "~1.2.0",
"nodemon": "~3.1.4",
"open": "^8.0.0",
"serve-static": "~1.15.0",
"ws": "~8.18.0"
},
"devDependencies": {
"sinon": "18.0.0",
"standard": "17.1.0",
"express": "4.19.2",
"mocha": "10.7.3",
"nyc": "17.0.0"
},
"main": "./index.js",
"scripts": {
"test": "npm run standard && npm run unitTests",
"unitTests": "mocha --recursive --timeout 5000 test",
"standard": "standard \"**/*.js\" \"bin/**/*\"",
"cover": "nyc --reporter=html --reporter=text mocha --timeout 5000 --recursive test",
"coverage": "npm run cover",
"make-coverage": "nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov"
},
"bin": {
"reload": "./bin/reload"
}
}