-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
41 lines (41 loc) · 913 Bytes
/
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
{
"name": "@tonaljs/chord",
"version": "6.1.0",
"description": "Musical chords and its relations",
"keywords": [
"chord",
"chords",
"music",
"theory",
"@tonaljs"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-detect": "4.9.0",
"@tonaljs/chord-type": "5.1.0",
"@tonaljs/collection": "4.9.0",
"@tonaljs/interval": "^5.1.0",
"@tonaljs/pcset": "4.10.0",
"@tonaljs/pitch-distance": "5.0.4",
"@tonaljs/pitch-note": "6.0.0",
"@tonaljs/scale-type": "4.9.0"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs",
"test": "jest --coverage"
}
}