aureooms/js-fft-integer

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@aureooms/js-fft-integer",
  "description": "Integer Fast Fourier Transform code bricks for JavaScript",
  "version": "0.0.1",
  "author": "aureooms",
  "ava": {
    "files": [
      "test/src/**/*"
    ],
    "require": [
      "@babel/polyfill",
      "@babel/register"
    ],
    "timeout": "1m"
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ],
    "plugins": [
      "@babel/plugin-proposal-async-generator-functions"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/make-github-pseudonymous-again/js-fft-integer/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "@babel/cli": "7.8.4",
    "@babel/core": "7.9.0",
    "@babel/polyfill": "7.8.7",
    "@babel/preset-env": "7.9.5",
    "@babel/register": "7.9.0",
    "ava": "3.8.1",
    "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": "6.2.2",
    "nyc": "15.0.1"
  },
  "files": [
    "lib"
  ],
  "homepage": "http://make-github-pseudonymous-again.github.io/js-fft-integer/",
  "keywords": [
    "Fourier",
    "Integer Fast Fourier Transform",
    "bricks",
    "ender",
    "fast",
    "integer",
    "javascript",
    "js",
    "transform"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "url": "https://github.com/make-github-pseudonymous-again/js-fft-integer.git",
    "type": "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"
  }
}