note-transposer
Version:
Music transposition made easy
36 lines (35 loc) • 1.07 kB
JSON
{
"name": "note-transposer",
"version": "1.0.4",
"description": "Music transposition made easy",
"main": "index.js",
"scripts": {
"build": "npm run test && npm run coverage && npm run docs && npm run dist",
"test": "mocha",
"docs": "documentation -f md > API.md",
"dist": "browserify index.js | uglifyjs > dist/note-transposer.min.js&& ls -hall dist/",
"disc": "browserify --full-paths index.js | uglifyjs | discify > dist/disc.html",
"coverage": "istanbul cover _mocha",
"cover": "npm run coverage && open ./coverage/lcov-report/index.html"
},
"repository": "https://github.com/danigb/tonal/tree/master/packages/note-transposer",
"keywords": [
"music",
"theory",
"note",
"transposition",
"transpose",
"interval",
"tonal"
],
"author": "danigb",
"license": "MIT",
"bugs": {
"url": "https://github.com/danigb/note-transposer/issues"
},
"homepage": "https://github.com/danigb/note-transposer#readme",
"devDependencies": {},
"dependencies": {
"music-notation": "^1.0.0"
}
}