forked from tonaljs/tonal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
156 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,36 @@ | ||
{ | ||
"name": "tonal-chord", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Music chords creation and manipulation", | ||
"repository": "https://github.com/danigb/tonal/packages/chord", | ||
"keywords": ["music", "theory", "chord", "tonal"], | ||
"keywords": [ | ||
"music", | ||
"theory", | ||
"chord", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "danigb", | ||
"license": "MIT", | ||
"dependencies": { | ||
"tonal-dictionary": "^1.0.0-pre4", | ||
"tonal-distance": "^1.0.0-pre4", | ||
"tonal-note": "^1.0.0-pre4", | ||
"tonal-pcset": "^1.0.0-pre4" | ||
"tonal-dictionary": "^1.0.0-pre5", | ||
"tonal-distance": "^1.0.0-pre5", | ||
"tonal-note": "^1.0.0-pre5", | ||
"tonal-pcset": "^1.0.0-pre5" | ||
}, | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!tonal)"] | ||
"transformIgnorePatterns": [ | ||
"<rootDir>/node_modules/(?!tonal)" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,35 @@ | ||
{ | ||
"name": "tonal-dictionary", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Tonal key/value utilities", | ||
"repository": "https://github.com/danigb/tonal/packages/dictionary", | ||
"keywords": ["music", "theory", "dictionary", "tonal"], | ||
"keywords": [ | ||
"music", | ||
"theory", | ||
"dictionary", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"dependencies": { | ||
"tonal-array": "^1.0.0-pre4", | ||
"tonal-note": "^1.0.0-pre4", | ||
"tonal-pcset": "^1.0.0-pre4" | ||
"tonal-array": "^1.0.0-pre5", | ||
"tonal-note": "^1.0.0-pre5", | ||
"tonal-pcset": "^1.0.0-pre5" | ||
}, | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!tonal)"] | ||
"transformIgnorePatterns": [ | ||
"<rootDir>/node_modules/(?!tonal)" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
{ | ||
"name": "tonal-interval", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Music interval creation and manipulation", | ||
"repository": "https://github.com/danigb/tonal/packages/interval", | ||
"keywords": ["music", "theory", "interval", "tonal"], | ||
"keywords": [ | ||
"music", | ||
"theory", | ||
"interval", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "danigb", | ||
"license": "MIT", | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,34 @@ | ||
{ | ||
"name": "tonal-key", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Conversion between key numbers and note names", | ||
"repository": "https://github.com/danigb/tonal/packages/key", | ||
"keywords": ["note", "key", "tonal"], | ||
"keywords": [ | ||
"note", | ||
"key", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "danigb", | ||
"license": "MIT", | ||
"dependencies": { | ||
"tonal-array": "^1.0.0-pre4", | ||
"tonal-distance": "^1.0.0-pre4", | ||
"tonal-note": "^1.0.0-pre4" | ||
"tonal-array": "^1.0.0-pre5", | ||
"tonal-distance": "^1.0.0-pre5", | ||
"tonal-note": "^1.0.0-pre5" | ||
}, | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!tonal)"] | ||
"transformIgnorePatterns": [ | ||
"<rootDir>/node_modules/(?!tonal)" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,35 @@ | ||
{ | ||
"name": "tonal-pcset", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Create and manipulate pitch class sets", | ||
"keywords": ["music", "theory", "pitch class", "sets", "tonal"], | ||
"keywords": [ | ||
"music", | ||
"theory", | ||
"pitch class", | ||
"sets", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "danigb", | ||
"license": "MIT", | ||
"dependencies": { | ||
"tonal-array": "^1.0.0-pre4", | ||
"tonal-interval": "^1.0.0-pre4", | ||
"tonal-note": "^1.0.0-pre4" | ||
"tonal-array": "^1.0.0-pre5", | ||
"tonal-interval": "^1.0.0-pre5", | ||
"tonal-note": "^1.0.0-pre5" | ||
}, | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!tonal)"] | ||
"transformIgnorePatterns": [ | ||
"<rootDir>/node_modules/(?!tonal)" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
{ | ||
"name": "tonal-scale", | ||
"version": "1.0.0-pre4", | ||
"version": "1.0.0-pre5", | ||
"description": "Music scales creation and manipulation", | ||
"repository": "https://github.com/danigb/tonal/packages/scale", | ||
"keywords": ["music", "theory", "scale", "tonal"], | ||
"keywords": [ | ||
"music", | ||
"theory", | ||
"scale", | ||
"tonal" | ||
], | ||
"scripts": { | ||
"docs": | ||
"jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"docs": "jsdoc2md -d 1 --name-format --member-index-format list index.js > README.md", | ||
"test": "jest --coverage" | ||
}, | ||
"main": "build/es5.js", | ||
"module": "build/es6.js", | ||
"author": "danigb", | ||
"license": "MIT", | ||
"dependencies": { | ||
"tonal-array": "^1.0.0-pre4", | ||
"tonal-dictionary": "^1.0.0-pre4", | ||
"tonal-distance": "^1.0.0-pre4", | ||
"tonal-note": "^1.0.0-pre4", | ||
"tonal-pcset": "^1.0.0-pre4" | ||
"tonal-array": "^1.0.0-pre5", | ||
"tonal-dictionary": "^1.0.0-pre5", | ||
"tonal-distance": "^1.0.0-pre5", | ||
"tonal-note": "^1.0.0-pre5", | ||
"tonal-pcset": "^1.0.0-pre5" | ||
}, | ||
"babel": { | ||
"presets": ["es2015"] | ||
"presets": [ | ||
"es2015" | ||
] | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!tonal)"] | ||
"transformIgnorePatterns": [ | ||
"<rootDir>/node_modules/(?!tonal)" | ||
] | ||
} | ||
} |
Oops, something went wrong.