a-read-files
Version:
Read files from a directory.
67 lines (66 loc) • 1.46 kB
JSON
{
"name": "a-read-files",
"version": "0.0.2",
"description": "Read files from a directory.",
"main": "index.js",
"scripts": {
"lint": "prettier --write . && xo",
"lint:fix": "prettier --write . && xo --fix",
"test": "mocha test.js",
"test:cov": "nyc npm run test",
"test:loop": "while npm test --silent; do :; done"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.0.0",
"a-read-files": "file:.",
"nyc": "^15.0.0",
"prettier": "latest",
"xo": "latest"
},
"keywords": [
"read",
"files",
"directory",
"readfiles",
"readfile",
"readdir"
],
"files": [
"index.js",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=8.6.0"
},
"author": "dailyrandomphoto <dailyrandomphoto@gmail.com> (https://www.dailyrandomphoto.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dailyrandomphoto/a-read-files.git"
},
"bugs": {
"url": "https://github.com/dailyrandomphoto/a-read-files/issues"
},
"homepage": "https://github.com/dailyrandomphoto/a-read-files#readme",
"xo": {
"space": 2,
"prettier": true,
"rules": {
"promise/prefer-await-to-then": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "test.js",
"envs": [
"node",
"mocha"
]
}
]
}
}