forked from fgnass/node-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@liquid-js/node-dev",
"version": "10.0.0-0",
"description": "Restarts your app when files are modified",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=20"
},
"bin": "lib/entrypoint.js",
"files": [
"lib",
"icons"
],
"dependencies": {
"dateformat": "^5.0.3",
"debounce": "^3.0.0",
"get-package-type": "^0.1.0",
"minimist": "^1.2.8",
"node-notifier": "^10.0.1",
"resolve": "^1.22.11",
"semver": "^7.7.4"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@stylistic/eslint-plugin": "^5.8.0",
"@types/dateformat": "^5.0.3",
"@types/get-package-type": "^0.1.0",
"@types/node": "^20.0.0",
"@types/node-notifier": "^8.0.5",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"clean-package": "^2.2.0",
"commit-and-tag-version": "^12.6.1",
"eslint": "<10.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"npm-check-updates": "^19.3.2",
"rimraf": "^6.1.2",
"tap": "^21.5.1",
"touch": "^3.1.1",
"ts-node-maintained": "^10.9.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.lib.json",
"test": "node test/index.mjs",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/node-dev.git"
},
"keywords": [
"restart",
"reload",
"supervisor",
"monitor",
"watch"
],
"author": "HitkoDev <development@hitko.si>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Liquid-JS/node-dev/issues"
},
"packageManager": "yarn@4.12.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package"
]
}
}