forked from google/zx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.23 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
56
{
"name": "zx",
"version": "4.3.0",
"description": "A tool for writing better scripts",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./dist/index.cjs"
},
"./globals": {
"import": "./globals.mjs",
"require": "./dist/globals.cjs"
}
},
"types": "index.d.ts",
"bin": {
"zx": "zx.mjs"
},
"engines": {
"node": ">= 14.13.1"
},
"scripts": {
"test": "node zx.mjs test.mjs",
"build": "node zx.mjs .github/scripts/build.mjs"
},
"dependencies": {
"@types/fs-extra": "^9.0.12",
"@types/minimist": "^1.2.2",
"@types/node": "^16.6",
"@types/node-fetch": "^2.5.12",
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"globby": "^12.0.1",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"ps-tree": "^1.2.0",
"which": "^2.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.56.3"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"files": [
"*.mjs",
"*.d.ts",
"dist"
],
"repository": "google/zx",
"author": "Anton Medvedev <[email protected]>",
"license": "Apache-2.0"
}