cantidio/node-ls-all

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ls-all",
  "version": "1.1.0",
  "description": "A simplistic deep file listing module for node (ls -Rla)",
  "author": "Cantidio Fontes <aniquilatorbloody@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/cantidio/node-ls-all#readme",
  "keywords": [
    "ls",
    "all",
    "recursive",
    "list",
    "files",
    "fs"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cantidio/node-ls-all.git"
  },
  "bugs": {
    "url": "https://github.com/cantidio/node-ls-all/issues"
  },
  "main": "build/lib/index.js",
  "bin": {
    "ls-all": "./build/bin/ls-all.js"
  },
  "scripts": {
    "clean": "rimraf build .coverage .nyc_output",
    "build": "npm run clean && babel ./src -d build",
    "lint": "eslint src tests && jscs src tests",
    "start": "node --harmony ./src/bin/ls-all",
    "test": "npm run lint && nyc ava",
    "deploy:coverage": "codeclimate-test-reporter < .coverage/lcov.info",
    "prepublish": "npm run build"
  },
  "ava": {
    "verbose": true,
    "files": [
      "tests/"
    ]
  },
  "nyc": {
    "all": true,
    "include": [
      "src/"
    ],
    "reporter": [
      "text",
      "lcov"
    ],
    "lines": 90,
    "function": 90,
    "branches": 90,
    "check-coverage": false,
    "report-dir": ".coverage"
  },
  "dependencies": {
    "colors": "^1.1.2",
    "meow": "^3.7.0",
    "tree-flatten": "^1.0.0"
  },
  "devDependencies": {
    "ava": "^0.13.0",
    "babel-cli": "^6.6.5",
    "babel-eslint": "^5.0.0",
    "babel-plugin-transform-object-assign": "^6.5.0",
    "codeclimate-test-reporter": "^0.3.1",
    "eslint": "^2.4.0",
    "eslint-plugin-babel": "^3.1.0",
    "estraverse-fb": "^1.3.1",
    "jscs": "^2.11.0",
    "nyc": "^6.1.1",
    "rimraf": "^2.5.2",
    "sinon": "^1.17.3"
  }
}