UNPKG

@nielse63/exec

Version:
47 lines (46 loc) 1.15 kB
{ "name": "@nielse63/exec", "version": "1.3.0", "description": "Run child process asynchronously", "keywords": [ "utils", "exec", "node-scripts" ], "author": "Erik Nielsen <erik@312development.com>", "homepage": "https://github.com/nielse63/node-scripts/tree/main/packages/exec#readme", "license": "MIT", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } } }, "files": [ "dist" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/nielse63/node-scripts.git" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1", "prepublishOnly": "npm run build", "prebuild": "rm -rf dist/", "build:mjs": "tsc --project tsconfig.json", "build:cjs": "tsc --project tsconfig.cjs.json", "build": "npm run build:mjs && npm run build:cjs" }, "bugs": { "url": "https://github.com/nielse63/node-scripts/issues" } }