note-to-frequency
Version:
🎼 converts a note (scientific pitch notation) to a frequency
77 lines (76 loc) • 2.5 kB
JSON
{
"name": "note-to-frequency",
"version": "1.4.1",
"description": "🎼 converts a note (scientific pitch notation) to a frequency",
"main": "cjs/index.js",
"browser": "dist/noteToFrequency.js",
"module": "es/index.js",
"jsxnext:main": "es/index.js",
"engines": {
"node": ">=4.0.0"
},
"files": [
"dist",
"cjs",
"es",
"src"
],
"scripts": {
"precommit": "npm run lint:test",
"prepush": "npm run lint:test",
"prepublish": "npm run build",
"release": "release-it",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "npm run lint:eslint && npm run lint:flow",
"lint:eslint": "eslint src/*.js",
"lint:flow": "flow --color always",
"test": "clear && jest",
"test:watch": "clear && jest --watch",
"test:coverage": "jest --coverage ",
"lint:test": "npm run lint && npm run test:coverage",
"build": "clear && npm run lint:test && npm run build:cjs && npm run build:es && npm run build:umd",
"build:watch": "rimraf cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir cjs",
"build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
"build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c"
},
"keywords": [
"audio",
"note",
"scientific pitch",
"frequency",
"web audio",
"music",
"music theory"
],
"author": "Geoffrey Dhuyvetters <geoffrey.dhuyvetters@gmail.com>",
"license": "MIT",
"repository": "duivvv/note-to-frequency",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-jest": "^17.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.16.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.7.1",
"eslint-config-devine": "^1.5.0",
"eslint-plugin-babel": "^4.0.0",
"flow-bin": "^0.37.0",
"husky": "^0.12.0",
"jest": "^18.1.0",
"release-it": "^2.5.1",
"rimraf": "^2.5.4",
"rollup": "^0.39.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-bundle-size": "^1.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1"
},
"dependencies": {
"validate-note": "^1.4.0"
}
}