-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 916 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
{
"name": "hot-module-require",
"version": "4.0.3",
"main": "index.js",
"description": "Detect module's update recursively on nodejs.",
"author": "imcuttle",
"scripts": {
"test": "node ./test/setup.js ./test/*.test.js",
"example": "node ./example/express-hot",
"doc": "documentation --github --markdown-toc=false readme index.js -a public -s \"API\" && git add README.md",
"version": "npm run doc"
},
"keywords": [
"update",
"hot-reload",
"hot-module-require"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"repository": "imcuttle/hot-module-require",
"devDependencies": {
"@types/jest": "^22.2.3",
"documentation": "^11.0.1",
"express": "^4.17.1",
"jest": "^22.4.4",
"minimist": "^1.2.5"
},
"dependencies": {
"@moyuyc/visit-tree": "^3.0.0",
"chokidar": "^3.4.2",
"debug": "^4.2.0",
"detect-dep": "^1.1.3"
}
}