-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 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
48
{
"name": "node-hmr",
"version": "1.4.0",
"description": "🔥 HMR for Node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest ./tests --coverage",
"release": "standard-version",
"dev": "tsc --build --watch",
"build": "rimraf dist && tsc --build"
},
"author": "Serhii Nakhankov",
"license": "MIT",
"engines": {
"node": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/serhiinkh/node-hmr"
},
"bugs": {
"url": "https://github.com/serhiinkh/node-hmr/issues"
},
"keywords": [
"hot",
"module",
"replacement",
"hmr",
"development",
"dynamic",
"reload"
],
"dependencies": {
"chokidar": "^3.5.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"coveralls": "^3.1.1",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^29.0.5",
"rimraf": "^4.1.2",
"standard-version": "^9.3.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}