-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "tonality-map",
"version": "1.2.5",
"description": "Mathematical representation of music tonality.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --verbose",
"coverage": "npm test -- --coverage --watchAll=true"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/holomorfo/tonality-map.git"
},
"keywords": [
"music",
"harmony",
"chord",
"tonality"
],
"author": "Cristian Banuelos",
"license": "MIT",
"bugs": {
"url": "https://github.com/holomorfo/tonality-map/issues"
},
"homepage": "https://github.com/holomorfo/tonality-map#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^20.8.7",
"babel-jest": "^28.1.2",
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
},
"engines": {
"npm": "8.19.2",
"node": "18.12.0"
}
}