node-fs-extra/package.json
2015-06-17 07:11:03 -05:00

56 lines
1.3 KiB
JSON

{
"name": "fs-extra",
"version": "0.19.0",
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",
"homepage": "https://github.com/jprichardson/node-fs-extra",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/node-fs-extra"
},
"keywords": [
"fs",
"file",
"file system",
"copy",
"directory",
"extra",
"mkdirp",
"mkdir",
"mkdirs",
"recursive",
"json",
"read",
"write",
"extra",
"delete",
"remove",
"touch",
"create",
"text",
"output",
"move"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"license": "MIT",
"dependencies": {
"graceful-fs": "^3.0.5",
"jsonfile": "^2.0.0",
"rimraf": "^2.2.8"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"read-dir-files": "^0.1.1",
"secure-random": "^1.1.1",
"standard": "^3.3.1"
},
"main": "./lib/index",
"scripts": {
"coverage": "istanbul cover ./node_modules/.bin/_mocha --recursive -- --reporter list",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",
"test": "standard && mocha test",
"test-windows": "Get-ChildItem -Path .\test\ -Filter *.test.js -Recurse | %{mocha $_}"
}
}