superchild
Version:
A smarter replacement for node.js's child_process module.
56 lines (55 loc) • 1.45 kB
JSON
{
"name": "superchild",
"version": "0.1.10",
"description": "A smarter replacement for node.js's child_process module.",
"main": "lib/superchild.js",
"scripts": {
"test": "node_modules/.bin/mocha test/superchild.mocha.js",
"docs": "node_modules/.bin/docco -l linear lib/superchild.js lib/json-sieve.js lib/unlogger.js && cat lib/superchild.js | egrep '^//' | sed -E 's/^[ ]*\\/\\/[ ]{0,1}//' > README.md",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha $(find test -name \"*.mocha.js\") && rm -rf docs/coverage && mv coverage/lcov-report docs/coverage && rm -rf coverage"
},
"repository": {
"type" : "git",
"url" : "git@github.com:mayanklahiri/node-superchild.git"
},
"keywords": [
"child_process",
"spawn",
"wrapper",
"process",
"fork",
"exec",
"execFile",
"ipc",
"cross-language",
"ld-json",
"json"
],
"author": "Mayank Lahiri <mayank@iceroad.io>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"docco": "^0.7.0",
"istanbul": "^0.4.4",
"lodash": "^4.13.1",
"mocha": "^2.5.3"
},
"jshintConfig": {
"laxcomma": true,
"laxbreak": true,
"node": true,
"loopfunc": false,
"funcscope": true,
"sub": true
},
"engines": {
"node": ">=0.11.13"
},
"contributors": [
{
"name": "Mikey",
"url": "https://github.com/ahdinosaur"
}
],
"os": ["!win32"]
}