-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 887 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 887 Bytes
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
{
"name": "@danmasta/watch",
"private": true,
"version": "0.0.0",
"author": "Daniel Smith <d@danmasta.net>",
"description": "Simple file watching and process reload supervisor utility",
"license": "Apache-2.0",
"keywords": [
"watch",
"watcher",
"file",
"process",
"fork",
"spawn",
"supervisor",
"reload"
],
"main": "index.js",
"type": "module",
"files": [
"index.js",
"lib/**"
],
"scripts": {
"preversion": "make build test status"
},
"repository": {
"type": "git",
"url": "https://github.com/danmasta/watch.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"lo": "github:danmasta/lo#semver:0.0.5",
"picomatch": "^4.0.3"
},
"devDependencies": {
"c8": "^10.1.3",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"mocha": "^11.7.5"
}
}