forked from google/zx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 951 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
42
43
44
{
"name": "zx",
"version": "5.2.0",
"description": "A tool for writing better scripts.",
"main": "./index.mjs",
"exports": {
".": "./index.mjs",
"./globals": "./globals.mjs",
"./experimental": "./experimental.mjs"
},
"types": "index.d.ts",
"bin": {
"zx": "zx.mjs"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"test": "node zx.mjs test.mjs"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0",
"chalk": "^5.0.0",
"fs-extra": "^10.0.1",
"globby": "^13.1.1",
"minimist": "^1.2.5",
"node-fetch": "^3.2.0",
"ps-tree": "^1.2.0",
"which": "^2.0.2",
"yaml": "^1.10.2"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"files": [
"*.mjs",
"*.d.ts"
],
"repository": "google/zx",
"author": "Anton Medvedev <[email protected]>",
"license": "Apache-2.0"
}