runsync
Version:
Polyfill of spawnSync and execSync for Node-0.10.x (Unix only yet)
52 lines (51 loc) • 1.17 kB
JSON
{
"name": "runsync",
"version": "0.1.8",
"description": "Polyfill of spawnSync and execSync for Node-0.10.x (Unix only yet)",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -u tdd",
"install": "node src/build.js",
"coverage": "mocha -u tdd --require blanket -R html-cov > coverage.html && google-chrome coverage.html",
"coveralls": "mocha -u tdd --require blanket -R mocha-lcov-reporter | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/norahiko/runsync.git"
},
"keywords": [
"run",
"child_process",
"process",
"spawn",
"spawnSync",
"exec",
"execSync",
"polyfill"
],
"author": "norahiko",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/norahiko/runsync/issues"
},
"devDependencies": {
"chai": "~1.9.1",
"mocha": "~1.21.3",
"blanket": "~1.1.6",
"coveralls": "~2.11.1",
"mocha-lcov-reporter": "0.0.1"
},
"dependencies": {
"nan": "~1.3.0"
},
"config": {
"blanket": {
"pattern": "index.js",
"data-cover-never": "node_modules"
}
}
}