|
- {
- "name": "@jsdevtools/ez-spawn",
- "version": "3.0.4",
- "description": "Simple, consistent sync or async process spawning",
- "keywords": [
- "cli",
- "process",
- "spawn",
- "exec",
- "sync",
- "async"
- ],
- "author": {
- "name": "James Messinger",
- "url": "https://jamesmessinger.com"
- },
- "contributors": [
- "Randall Krauskopf (http://github.com/rkrauskopf)",
- "James Messinger (https://jamesmessinger.com)"
- ],
- "license": "MIT",
- "homepage": "https://jstools.dev/ez-spawn",
- "repository": {
- "type": "git",
- "url": "https://github.com/JS-DevTools/ez-spawn.git"
- },
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "files": [
- "lib"
- ],
- "scripts": {
- "clean": "shx rm -rf .nyc_output coverage",
- "lint": "eslint lib test",
- "test": "npm run test:node && npm run test:typescript && npm run lint",
- "test:node": "mocha",
- "test:typescript": "tsc --noEmit test/specs/typescript-definition.spec.ts",
- "coverage": "nyc node_modules/mocha/bin/mocha",
- "upgrade": "npm-check -u && npm audit fix",
- "bump": "bump --tag --push --all",
- "release": "npm run upgrade && npm run clean && npm test && npm run bump"
- },
- "devDependencies": {
- "@jsdevtools/eslint-config": "^1.0.3",
- "@jsdevtools/version-bump-prompt": "^6.0.5",
- "@types/node": "^14.0.23",
- "chai": "^4.2.0",
- "eslint": "^7.4.0",
- "mocha": "^8.0.1",
- "npm-check": "^5.9.2",
- "nyc": "^15.1.0",
- "shx": "^0.3.2",
- "typescript": "^3.9.6"
- },
- "dependencies": {
- "call-me-maybe": "^1.0.1",
- "cross-spawn": "^7.0.3",
- "string-argv": "^0.3.1",
- "type-detect": "^4.0.8"
- },
- "engines": {
- "node": ">=10"
- }
- }
|