UNPKG

parrier

Version:

This is a package that lists everything inside the provided "path" (or the full tree structure if "recurse" is set), asynchronously.

105 lines (104 loc) 3.2 kB
{ "name": "parrier", "version": "0.2.1-alpha", "description": "This is a package that lists everything inside the provided \"path\" (or the full tree structure if \"recurse\" is set), asynchronously.", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "nyc mocha", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint . --ext .js,.jsx,.ts,.tsx", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "generate:readme": "npx @appnest/readme generate", "generate:contributing": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'", "generate:api-docs": "typedoc", "generate:all": "npm run generate:api-docs && npm run generate:contributing && npm run generate:readme" }, "repository": { "type": "git", "url": "https://github.com/jruipinto/parrier" }, "keywords": [ "npm", "package", "dirtree", "directory", "tree", "async", "promise" ], "author": { "name": "jruipinto", "email": "social.jruipinto@gmail.com", "url": "https://github.com/jruipinto", "linkedin": "https://pt.linkedin.com/in/j-rui-pinto" }, "license": "MIT", "bugs": { "url": "https://github.com/jruipinto/parrier/issues" }, "homepage": "https://jruipinto.github.io/parrier/", "directories": { "lib": "lib", "doc": "docs", "example": "example" }, "funding": [ { "type": "individual", "url": "http://example.com/donate" }, "http://example.com/donateAlso", { "type": "patreon", "url": "https://www.patreon.com/my-account" } ], "dependencies": {}, "devDependencies": { "@appnest/readme": "^1.2.7", "@types/chai": "^4.2.14", "@types/chai-as-promised": "^7.1.3", "@types/mocha": "^8.2.0", "@types/mock-fs": "^4.13.0", "@types/node": "^14.14.14", "@typescript-eslint/eslint-plugin": "^4.10.0", "@typescript-eslint/parser": "^4.10.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "eslint": "^7.16.0", "eslint-config-prettier": "^7.1.0", "mocha": "^8.2.1", "mock-fs": "^4.11.0", "nyc": "^15.1.0", "prettier": "^2.2.1", "source-map-support": "^0.5.19", "ts-node": "^9.1.1", "typedoc": "^0.20.9", "typescript": "^4.1.3", "weallcontribute": "^1.0.9" }, "files": [ "lib/**/*" ], "engines": { "node": ">=8.0.0", "npm": ">=5.0.0" }, "readmeMeta": { "demo": { "url": "https://repl.it/@jruipinto/parrier-demo#index.js" }, "logo": { "url": "logo.png" }, "preview": { "url": "preview.gif" } } }