-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "@davidfloegel/harmonie",
"version": "0.1.0-alpha.8",
"description": "A typescript music theory library",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"lint": "eslint './src/**/*.ts'",
"type-check": "tsc --noEmit"
},
"files": ["build"],
"repository": {
"type": "git",
"url": "git+https://github.com/davidfloegel/harmonie.git"
},
"keywords": [
"music theory",
"musictheory",
"music",
"intervals",
"chords",
"scales",
"modes"
],
"author": "David Floegel",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidfloegel/harmonie/issues"
},
"homepage": "https://github.com/davidfloegel/harmonie#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": ["core-js"]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn type-check"
}
},
"devDependencies": {
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"rollup": "^2.7.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}