-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
61 lines (61 loc) · 1.43 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
56
57
58
59
60
61
{
"name": "node-dev",
"version": "8.0.0",
"description": "Restarts your app when files are modified",
"keywords": [
"restart",
"reload",
"supervisor",
"monitor",
"watch"
],
"author": "Felix Gnass <fgnass@gmail.com> (https://github.com/fgnass)",
"contributors": [
"Daniel Gasienica <daniel@gasienica.ch> (https://github.com/gasi)",
"Bjorn Stromberg <bjorn@bjornstar.com> (https://bjornstar.com)"
],
"repository": {
"type": "git",
"url": "http://github.com/fgnass/node-dev.git"
},
"license": "MIT",
"bin": {
"node-dev": "bin/node-dev"
},
"main": "./lib",
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint lib test bin/node-dev",
"test": "node test",
"prepare": "husky install"
},
"dependencies": {
"dateformat": "^3.0.3",
"dynamic-dedupe": "^0.3.0",
"filewatcher": "~3.0.0",
"get-package-type": "^0.1.0",
"minimist": "^1.2.6",
"node-notifier": "^8.0.1",
"resolve": "^1.22.0",
"semver": "^7.3.7"
},
"devDependencies": {
"@types/node": "^18.11.18",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.6.2",
"tap": "^16.3.2",
"tap-xunit": "^2.4.1",
"touch": "^3.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,mjs}": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}