tonal-detect
Version:
Find the name of pitch class sets
42 lines (41 loc) • 1.01 kB
JSON
{
"name": "tonal-detect",
"version": "2.2.2",
"description": "Find the name of pitch class sets",
"repository": "https://github.com/danigb/tonal/extensions/detect",
"keywords": [
"pcset",
"detector",
"scale",
"chord",
"music theory",
"tonal"
],
"scripts": {
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md",
"test": "jest --coverage",
"build": "npm run build-es5 && npm run build-es6",
"build-es5": "rollup -c ../../config/rollup.config.es5.js -- index.js",
"build-es6": "buble --no modules index.js -o build/es6.js"
},
"main": "build/es5.js",
"module": "build/es6.js",
"author": "danigb",
"license": "MIT",
"dependencies": {
"tonal-array": "^2.2.2",
"tonal-dictionary": "^2.2.2",
"tonal-note": "^2.2.2",
"tonal-pcset": "^2.2.2"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!tonal)"
]
}
}