UNPKG

node-pitchfinder

Version:
60 lines (59 loc) 1.47 kB
{ "name": "node-pitchfinder", "version": "2.1.0", "description": "A pitch-detection library for node (using C++ Addon)", "scripts": { "clean": "rm -rf ./lib ./build", "build": "npm run clean && node-gyp configure build && babel src -d lib", "lint": "standard", "test": "babel-node spec/support/run.js", "ci-test": "npm install && npm run lint && npm test", "prepublish": "npm run lint && npm run build" }, "license": "GNU v3", "repository": { "type": "git", "url": "git+https://github.com/cristovao-trevisan/node-pitchfinder" }, "keywords": [ "pitch", "frequency", "detector", "detect", "detection", "find", "YIN", "AMDF", "autocorrelation", "music", "audio" ], "author": "Cristóvão Trevisan", "bugs": { "url": "https://github.com/cristovao-trevisan/node-pitchfinder/issues" }, "homepage": "https://github.com/cristovao-trevisan/node-pitchfinder#readme", "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "^10.1.0", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "eslint": "^7.17.0", "jasmine": "^3.6.3", "jasmine-console-reporter": "^3.1.0", "standard": "^16.0.3", "wave-generator": "^0.1.1" }, "dependencies": { "nan": "^2.14.2", "node-gyp": "^7.1.2" }, "standard": { "parser": "babel-eslint", "env": "jasmine", "ignore": [ "build", "lib" ] } }