-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 827 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
{
"name": "zx",
"version": "2.1.0",
"description": "A tool for writing better scripts",
"main": "index.mjs",
"types": "index.d.ts",
"bin": {
"zx": "zx.mjs"
},
"engines": {
"node": ">= 14.8.0"
},
"scripts": {
"test": "node zx.mjs test.mjs"
},
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/minimist": "^1.2.1",
"@types/node": "^16.0",
"@types/node-fetch": "^2.5.10",
"chalk": "^4.1.1",
"fs-extra": "^10.0.0",
"globby": "^12.0.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"which": "^2.0.2"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"files": [
"*.mjs",
"*.js",
"*.d.ts"
],
"repository": "google/zx",
"author": "Anton Medvedev <anton@medv.io>",
"license": "Apache-2.0"
}