-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "postmon",
"version": "0.2.2",
"description": "An npm script that runs another script only if the contents of a directory have changed",
"repository": "[email protected]:binary64/postmon.git",
"author": "binary64 <[email protected]>",
"license": "MIT",
"type": "module",
"bin": "dist/cli.mjs",
"bugs": "https://github.com/binary64/postmon/issues",
"homepage": "https://github.com/binary64/postmon",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rimraf dist",
"prepublish": "pnpm clean && pnpm build && packito",
"build": "node esbuild.mjs",
"dev": "pnpm build && node dist/cli.mjs"
},
"devDependencies": {
"@types/fs-extra": "11.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "18.15.11",
"esbuild": "0.17.17",
"esbuild-node-externals": "^1.7.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"nodemon": "2.0.22",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"ts-node-dev": "2.0.0",
"typescript": "5.0.4"
},
"dependencies": {
"commander": "10.0.1",
"fast-glob": "3.2.12",
"fs-extra": "11.1.1",
"hash-obj": "4.0.0",
"hasha": "5.2.2",
"js-yaml": "^4.1.0",
"p-map": "5.5.0",
"packito": "^0.5.0",
"puka": "1.0.1"
}
}