husk
Version:
Modular stream transformation system.
86 lines (85 loc) • 1.97 kB
JSON
{
"name": "husk",
"description": "Modular stream transformation system.",
"version": "0.5.3",
"author": "muji <noop@xpm.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tmpfs/husk.git"
},
"main": "lib/husk.js",
"dependencies": {
"husk-async": "~1.0.2",
"husk-core": "~1.0.4",
"husk-exec": "~1.0.4",
"husk-fs": "~1.0.2",
"zephyr": "~1.2.6"
},
"devDependencies": {
"async": "~0.9.0",
"chai": "~3.4.1",
"coveralls": "~2.11.6",
"istanbul": "~0.4.1",
"mocha": "~2.3.4",
"pluck-flow": "~1.0.1",
"print-flow": "~1.0.1",
"ttycolor": "~0.8.14"
},
"engine": [
"node >= 0.12.2"
],
"keywords": [
"stream",
"transform",
"lines",
"parse",
"read",
"shell",
"exec",
"json"
],
"scripts": {
"lint": "jshint . && jscs .",
"clean": "rm -rf coverage",
"docs": "npm run readme",
"readme": "mdp --force -v",
"ex": "./sbin/ebin",
"linkify": "./sbin/linkify",
"installify": "./sbin/installify",
"pretest": "rm -rf ./target && mkdir target",
"test": "NODE_ENV=test mocha test/global.js ${SPEC:-test/spec}",
"precover": "npm run pretest",
"cover": "NODE_ENV=test istanbul cover --root ./lib _mocha -- test/global.js ${SPEC:-test/spec}",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"mdp": {
"title": "Husk",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/tmpfs/husk",
"partial": [
{
"inc": [
"introduction.md",
"install.md",
"usage.md",
"plugins.md"
]
},
{
"title": "Examples",
"bin": "echo doc | sbin/example"
},
{
"inc": [
"developer.md",
"license.md"
]
}
]
}
}