fs-extra-promise
Version:
Node file system library and fs-extra module promisified with bluebird
50 lines (49 loc) • 1.49 kB
JSON
{
"name": "fs-extra-promise",
"version": "1.0.1",
"description": "Node file system library and fs-extra module promisified with bluebird",
"main": "./lib/",
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/fs-extra-promise.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/fs-extra-promise/issues"
},
"dependencies": {
"fs-extra": "^2.1.2",
"bluebird": "^3.5.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"jshint": "^2.9.4",
"istanbul": "^0.4.5",
"coveralls": "^2.13.0"
},
"keywords": [
"fs",
"fs-extra",
"file",
"promise",
"bluebird",
"extend"
],
"scripts": {
"test": "if [ $COVERAGE ]; then npm run coveralls; else npm run jshint && npm run test-main; fi",
"jshint": "./node_modules/.bin/jshint lib test",
"test-main": "./node_modules/mocha/bin/mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'",
"cover": "npm run cover-main && rm -rf coverage",
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover-main": "COVERAGE=true ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec 'test/**/*.test.js'"
},
"engines": {
"node": ">=4"
},
"readmeFilename": "README.md",
"license": "MIT"
}