2023-01-10 15:49:41 +00:00
|
|
|
{
|
|
|
|
"name": "zx",
|
2023-03-28 15:15:22 +00:00
|
|
|
"version": "7.2.1",
|
2023-01-10 15:49:41 +00:00
|
|
|
"description": "A tool for writing better scripts.",
|
|
|
|
"type": "module",
|
|
|
|
"main": "./build/index.js",
|
|
|
|
"types": "./build/index.d.ts",
|
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
".": [
|
|
|
|
"./build/index.d.ts"
|
|
|
|
],
|
|
|
|
"globals": [
|
|
|
|
"./build/globals.d.ts"
|
|
|
|
],
|
|
|
|
"experimental": [
|
|
|
|
"./build/experimental.d.ts"
|
|
|
|
],
|
|
|
|
"cli": [
|
|
|
|
"./build/cli.d.ts"
|
|
|
|
],
|
|
|
|
"core": [
|
|
|
|
"./build/core.d.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"exports": {
|
|
|
|
".": "./build/index.js",
|
|
|
|
"./globals": "./build/globals.js",
|
|
|
|
"./experimental": "./build/experimental.js",
|
|
|
|
"./cli": "./build/cli.js",
|
|
|
|
"./core": "./build/core.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"zx": "./build/cli.js"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 16.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"fmt": "prettier --write .",
|
|
|
|
"fmt:check": "prettier --check .",
|
|
|
|
"build": "tsc --project tsconfig.prod.json",
|
|
|
|
"build:check": "tsc",
|
|
|
|
"test": "npm run build && PATH=$(env -i bash -c 'echo $PATH') node_modules/.bin/uvu test -i fixtures",
|
|
|
|
"test:types": "tsd",
|
|
|
|
"coverage": "c8 --check-coverage npm test -- -i package",
|
|
|
|
"mutation": "stryker run",
|
|
|
|
"circular": "madge --circular src/*"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-03-28 15:15:22 +00:00
|
|
|
"@types/fs-extra": "^11.0.1",
|
2023-01-10 15:49:41 +00:00
|
|
|
"@types/minimist": "^1.2.2",
|
2023-03-28 15:15:22 +00:00
|
|
|
"@types/node": "^18.14.2",
|
2023-01-10 15:49:41 +00:00
|
|
|
"@types/ps-tree": "^1.1.2",
|
2023-03-28 15:15:22 +00:00
|
|
|
"@types/which": "^2.0.2",
|
|
|
|
"chalk": "^5.2.0",
|
|
|
|
"fs-extra": "^11.1.0",
|
|
|
|
"globby": "^13.1.3",
|
|
|
|
"minimist": "^1.2.8",
|
2023-01-10 15:49:41 +00:00
|
|
|
"node-fetch": "3.2.10",
|
|
|
|
"ps-tree": "^1.2.0",
|
2023-03-28 15:15:22 +00:00
|
|
|
"webpod": "^0",
|
|
|
|
"which": "^3.0.0",
|
|
|
|
"yaml": "^2.2.1"
|
2023-01-10 15:49:41 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-28 15:15:22 +00:00
|
|
|
"@stryker-mutator/core": "^6.4.1",
|
|
|
|
"c8": "^7.13.0",
|
|
|
|
"madge": "^6.0.0",
|
|
|
|
"prettier": "^2.8.4",
|
|
|
|
"tsd": "^0.25.0",
|
|
|
|
"typescript": "^4.9.5",
|
2023-01-10 15:49:41 +00:00
|
|
|
"uvu": "^0.5.6"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://wombat-dressing-room.appspot.com"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"build",
|
|
|
|
"zx.js"
|
|
|
|
],
|
|
|
|
"prettier": {
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"endOfLine": "lf"
|
|
|
|
},
|
|
|
|
"repository": "google/zx",
|
|
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
|
|
"license": "Apache-2.0"
|
|
|
|
}
|