-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
60
{
"name": "zx-extra",
"version": "3.0.26",
"description": "zx with some useful extras",
"main": "./src/main/js/index.mjs",
"types": "./src/main/js/index.d.ts",
"type": "module",
"bin": {
"zx-extra": "src/main/js/cli.mjs"
},
"scripts": {
"build": "echo 'No build required' && exit 0",
"build:js": "tsc --project tsconfig.json --outDir ./target/js",
"test": "PATH=$(env -i bash -c 'echo $PATH') node ./src/main/js/cli.mjs ./src/test/js/test.mjs --quiet",
"test:cov": "c8 npm run test && c8 report -r lcov",
"test:bun": "bun ./src/main/js/cli.mjs ./src/test/js/test.mjs --quiet",
"publish:manual": "npm publish --no-git-tag-version",
"publish:beta": "npm publish --no-git-tag-version --tag beta",
"publish:rc": "npm publish --no-git-tag-version --tag rc"
},
"files": [
"src/main",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/zx-extra.git"
},
"keywords": [
"zx",
"zx-extra",
"shell",
"bash"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/qiwi/zx-extra/issues"
},
"homepage": "https://github.com/qiwi/zx-extra#readme",
"dependencies": {
"@qiwi/deep-proxy": "^3.0.0",
"@types/ip": "^1.1.3",
"@types/node": "^22.5.1",
"@types/semver": "^7.5.8",
"globby-cp": "^1.3.0",
"ini": "^4.1.3",
"ip": "^2.0.1",
"is-reachable": "^5.2.1",
"semver": "^7.6.3",
"ssri": "^10.0.6",
"tempy": "^3.1.0",
"zx": "8.2.4",
"typescript": "^5.5.4"
},
"devDependencies": {
"c8": "^10.1.2"
}
}