-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 841 Bytes
/
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
{
"name": "yzx",
"version": "7.0.2",
"description": "A tool for writing better concurrent scripts",
"main": "./index.mjs",
"exports": {
".": "./index.mjs",
"./globals": "./globals.mjs",
"./package.json": "./package.json"
},
"types": "index.d.ts",
"bin": {
"yzx": "yzx.mjs"
},
"engines": {
"node": ">= 14.13.1"
},
"type": "module",
"scripts": {
"test": "node yzx.mjs test.mjs"
},
"dependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"chalk": "^5.2.0",
"globby": "^13.1.3",
"minimist": "^1.2.7",
"ps-tree": "^1.2.0",
"which": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"*.mjs",
"*.d.ts"
],
"repository": "eraviart/yzx",
"author": "Anton Medvedev <[email protected]>",
"license": "Apache-2.0"
}