-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "noderel",
"version": "1.0.14",
"description": "Noderel a development tool for Node.js that automatically restarts the node process when a file is modified.",
"main": "src/noderel.js",
"bin": {
"noderel": "bin/cli"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"docs": "servino -r docs -w docs",
"tests": "node bin/cli -e tests/server.js"
},
"dependencies": {
"chokidar": "^3.6.0",
"minimist": "^1.2.8",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"express": "^4.19.2",
"servino": "^2.0.9"
},
"keywords": [
"hot reload",
"monitor",
"process",
"reload",
"watch",
"nodemon",
"supervisor"
],
"author": "Haikel Fazzani",
"license": "MIT",
"homepage": "https://wutility.github.io/noderel",
"bugs": {
"url": "https://github.com/wutility/noderel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wutility/noderel.git"
},
"engines": {
"node": ">=12.0.0"
}
}