-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "harmonics",
"version": "1.1.1",
"description": "Tools and utilities for a generic representation of scales, chords, progressions etc. for use in music software, music related web & mobile apps, VST/VCV plugins and Max for Live devices.",
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --mode=production",
"watch:browser": "webpack --watch --mode=development",
"bump-major": "npm version major --no-git-tag-version",
"bump-minor": "npm version minor --no-git-tag-version",
"bump-patch": "npm version patch --no-git-tag-version"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@tonaljs/tonal": "^4.6.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scribbletune/harmonics.git"
},
"keywords": [
"javascript",
"music",
"scales",
"chords",
"progressions",
"scribbletune",
"music theory",
"tonal",
"max for live",
"vcv rack"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/scribbletune/harmonics/issues"
},
"homepage": "https://github.com/scribbletune/harmonics#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}