@steelbrain/spawn
Version:
Process spawning APIs beautified
61 lines (60 loc) • 1.63 kB
JSON
{
"name": "@steelbrain/spawn",
"version": "0.2.1",
"description": "Process spawning APIs beautified",
"main": "lib/cjs/index.js",
"typings": "lib/typings/index.d.ts",
"module": "lib/esm/index.mjs",
"exports": {
".": {
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.js"
},
"./package.json": "./package.json"
},
"type": "commonjs",
"scripts": {
"test": "ava",
"lint": "(tsc -p . --noEmit) && (eslint . --ext .ts) && (prettier --list-different src/*.ts)",
"prepare": "yarn build:clean ; yarn build:esm ; yarn build:cjs ; yarn build:typings",
"build:clean": "rm -rf lib",
"build:esm": "tsc --module es2015 --target es2018 --outDir lib/esm && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
"build:typings": "tsc --declaration --outDir lib/typings --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steelbrain/spawn.git"
},
"author": "steelbrain",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/spawn/issues"
},
"files": [
"lib/*"
],
"homepage": "https://github.com/steelbrain/spawn#readme",
"devDependencies": {
"@types/node": "^14.0.27",
"ava": "^3.7.0",
"eslint-config-steelbrain": "^10.0.0-beta2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {},
"ava": {
"files": [
"test/*-test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"engines": {
"node": ">= 8"
}
}