-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "onchange",
"version": "7.1.0",
"description": "Use glob patterns to watch file sets and run a command when anything is added, changed or deleted.",
"keywords": [
"glob",
"watch",
"change"
],
"homepage": "https://github.com/Qard/onchange",
"bugs": {
"url": "https://github.com/Qard/onchange/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Qard/onchange.git"
},
"license": "MIT",
"author": "Stephen Belanger <admin@stephenbelanger.com>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"onchange": "dist/bin.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && npm run build",
"test": "echo \"npm run test:local\"",
"test:local": "node test/queue.js && node test/concurrent.js"
},
"dependencies": {
"@blakeembrey/deque": "^1.0.5",
"@blakeembrey/template": "^1.2.0",
"arg": "^5.0.2",
"chokidar": "^3.6.0",
"cross-spawn": "^7.0.1",
"ignore": "^5.1.4",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@types/cross-spawn": "^6.0.1",
"@types/node": "^22.5.4",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"snyk": true
}