{
  "name": "fft-js",
  "version": "0.0.12",
  "description": "Simple pure Javascript implementation of the Cooley-Tukey algorithm. Note: fft-js was chosen as the name since a lot of the FFT implementations on NPM at the time this was published were wrappers for Ruby or C.",
  "license": "MIT",
  "homepage": "https://github.com/vail-systems/node-fft",
  "repository": "vail-systems/node-fft",
  "contributors": [
    "Joshua Jung <joshua.p.jung@gmail.com> (http://www.joshjung.com)",
    "Ben Bryan <bbryan@vailsys.com>"
  ],
  "engines": {
    "node": ">=0.12.0"
  },
  "main": "index.js",
  "files": [
    "index.js",
    "fft.js",
    "src",
    "test"
  ],
  "keywords": [
    "fft",
    "dft",
    "fast",
    "discrete",
    "fourier",
    "transform",
    "audio",
    "speech",
    "cooley",
    "tukey"
  ],
  "dependencies": {
    "commander": "~2.7.1",
    "bit-twiddle": "~1.0.2"
  },
  "scripts": {
    "test": "mocha"
  }
}
