forked from google/zx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
57
58
59
{
"name": "zx",
"version": "6.0.7",
"description": "A tool for writing better scripts.",
"main": "src/index.mjs",
"types": "src/index.d.ts",
"exports": {
".": {
"import": "./src/index.mjs",
"types": "./src/index.d.ts"
},
"./globals": {
"import": "./src/globals.mjs",
"types": "./src/globals.d.ts"
},
"./experimental": {
"import": "./src/experimental.mjs",
"types": "./src/experimental.d.ts"
},
"./package.json": "./package.json"
},
"bin": {
"zx": "zx.mjs"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"test:cov": "c8 --reporter=html npm run test",
"test": "node zx.mjs test/full.test.mjs",
"test:zx": "npm run test zx",
"test:index": "npm run test index"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0",
"@types/which": "^2.0.1",
"chalk": "^5.0.1",
"fs-extra": "^10.0.1",
"globby": "^13.1.1",
"minimist": "^1.2.5",
"node-fetch": "^3.2.3",
"ps-tree": "^1.2.0",
"which": "^2.0.2",
"yaml": "^1.10.2"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"files": [
"src",
"*.mjs",
"*.d.ts"
],
"repository": "google/zx",
"author": "Anton Medvedev <anton@medv.io>",
"license": "Apache-2.0"
}