-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "music-builder",
"version": "1.2.5",
"description": "The Music Builder provides the notes needed for a chord or scale.",
"main": "./build/dist/src/main.js",
"types": "./build/dist/src/main.d.ts",
"scripts": {
"build": "tsc",
"format": "npx prettier --write .",
"lint": "eslint src/**.ts",
"lint-fix": "eslint src/**.ts test/**.ts --fix",
"test": "npm run build && npx jest --coverage"
},
"author": "Alex Kaufman",
"license": "GPL-3.0-or-later",
"dependencies": {
"node": "^16.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"prettier": "2.3.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/alexkaufman06/music-builder.git"
},
"keywords": [
"music",
"builder",
"chords",
"scales",
"major",
"minor",
"pentatonic",
"dominant",
"diminished",
"modes",
"ionian",
"dorian",
"phrygian",
"lydian",
"mixolydian",
"aeolian",
"locrian",
"intervals",
"typescript",
"notes",
"accidentals"
],
"bugs": {
"url": "https://github.com/alexkaufman06/music-builder/issues"
},
"homepage": "https://github.com/alexkaufman06/music-builder#readme",
"files": [
"build/dist/src"
]
}