aureooms/es-parse

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@aureooms/js-parse",
  "description": "Easily parse various input formats.",
  "version": "3.0.0",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "require": [
      "babel-polyfill",
      "babel-register"
    ]
  },
  "babel": {
    "presets": [
      "env"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/make-github-pseudonymous-again/js-parse/issues"
  },
  "dependencies": {
    "@aureooms/js-stream": "^0.0.2"
  },
  "devDependencies": {
    "@aureooms/js-itertools": "^3.4.0",
    "ava": "^0.24.0",
    "babel-cli": "^6.26.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "codeclimate-test-reporter": "^0.5.0",
    "coveralls": "^3.0.0",
    "esdoc": "^1.0.4",
    "esdoc-inject-script-plugin": "^1.0.0",
    "esdoc-inject-style-plugin": "^1.0.0",
    "esdoc-standard-plugin": "^1.0.0",
    "nyc": "^11.4.1"
  },
  "homepage": "https://github.com/make-github-pseudonymous-again/js-parse#readme",
  "keywords": [
    "parse"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/make-github-pseudonymous-again/js-parse"
  },
  "scripts": {
    "build": "rm -rf lib && babel src -d lib",
    "cover": "nyc --reporter=lcov npm test",
    "esdoc": "esdoc",
    "prepare": "npm run build",
    "release": "np",
    "test": "ava ./test/src"
  }
}