aureooms/js-integer-little-endian

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@aureooms/js-integer-little-endian",
  "description": "Arbitrary precision arithmetic for integers in little endian order for JavaScript",
  "version": "2.0.0",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "require": [
      "@babel/polyfill",
      "@babel/register"
    ],
    "files": [
      "test/src/**/*"
    ],
    "timeout": "1m"
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/make-github-pseudonymous-again/js-integer-little-endian/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "@aureooms/js-algorithms": "3.0.7",
    "@aureooms/js-array": "4.0.0",
    "@aureooms/js-memory": "4.0.0",
    "@aureooms/js-operator": "1.0.2",
    "@aureooms/js-random": "2.0.0",
    "@aureooms/js-string": "1.0.0",
    "@babel/cli": "7.13.10",
    "@babel/core": "7.13.10",
    "@babel/polyfill": "7.12.1",
    "@babel/preset-env": "7.13.10",
    "@babel/register": "7.13.8",
    "ava": "3.15.0",
    "coveralls": "3.1.0",
    "esdoc": "1.1.0",
    "esdoc-inject-script-plugin": "1.0.0",
    "esdoc-inject-style-plugin": "1.0.0",
    "esdoc-standard-plugin": "1.0.0",
    "np": "7.4.0",
    "nyc": "15.1.0"
  },
  "files": [
    "lib"
  ],
  "homepage": "https://make-github-pseudonymous-again.github.io/js-integer-little-endian",
  "keywords": [
    "arbitrary",
    "arithmetic",
    "endian",
    "integers",
    "javascript",
    "js",
    "little",
    "precision"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/make-github-pseudonymous-again/js-integer-little-endian.git"
  },
  "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"
  }
}