123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "klaw",
- "version": "4.0.1",
- "description": "File system walker with Readable stream interface.",
- "main": "./src/index.js",
- "scripts": {
- "lint": "standard",
- "test": "npm run lint && npm run unit",
- "unit": "tape tests/**/*.js | tap-spec"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jprichardson/node-klaw.git"
- },
- "keywords": [
- "walk",
- "walker",
- "fs",
- "readable",
- "streams"
- ],
- "engines": {
- "node": ">=14.14.0"
- },
- "author": "JP Richardson",
- "license": "MIT",
- "files": [
- "src/"
- ],
- "bugs": {
- "url": "https://github.com/jprichardson/node-klaw/issues"
- },
- "homepage": "https://github.com/jprichardson/node-klaw#readme",
- "devDependencies": {
- "standard": "^16.0.3",
- "tap-spec": "^5.0.0",
- "tape": "^5.3.1"
- }
- }
|