fspath
Version:
Immutable Path combining path and fs operations for easy traversal and streaming
69 lines (68 loc) • 2.07 kB
JSON
{
"name": "fspath",
"version": "0.15.0",
"description": "Immutable Path combining path and fs operations for easy traversal and streaming",
"keywords": [
"path",
"immutable",
"paths",
"file",
"files",
"dir",
"dirs",
"directory",
"directories",
"folder",
"folders",
"stats",
"reader",
"writer",
"read",
"write",
"list"
],
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"author": "Eli Doran <eli+npm@elidoran.com>",
"license": "MIT",
"scripts": {
"lint": "coffeelint -f build/coffeelint.json lib",
"build": "coffee --bare --compile lib",
"clean": "rm -rf lib/*.js",
"prepublish": "npm run build",
"postpublish": "npm run clean",
"test": "mocha --compilers coffee:coffee-script/register --reporter spec --bail --check-leaks test/lib",
"test4": "nave use 4.8.3 npm test",
"test6": "nave use 6.10.3 npm test",
"test7": "nave use 7.10.0 npm test",
"test-all": "npm run test4 && npm run test6 && npm run test7",
"precoverage": "npm run clean",
"coverage": "istanbul cover -x 'build/**' _mocha -- --compilers coffee:coffee-script/register --require ./build/coverage.js -R spec test/lib",
"publish-coverage": "npm run coverage && cat coverage/lcov.info | coveralls",
"precoverage-lcov": "npm run clean",
"coverage-lcov": "istanbul cover -x 'build/**' _mocha --report lcovonly -- --compilers coffee:coffee-script/register --require ./build/coverage.js -R spec test/lib",
"coverage-clean": "rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/elidoran/node-fspath.git"
},
"bugs": "http://github.com/elidoran/node-fspath/issues",
"devDependencies": {
"coffee-coverage": "^2.0.1",
"coffee-script": "^1.12.5",
"coffeelint": "^1.16.0",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nave": "^2.2.3",
"strung": "^1.1.3"
},
"dependencies": {},
"engines": {
"node": ">=4"
}
}