-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
67
68
69
70
71
{
"name": "monorepo-chord-symbol",
"version": "2.1.0",
"description": "Chord symbol parser and renderer",
"author": "Christophe Noël",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/no-chris/chord-symbol.git"
},
"bugs": {
"url": "https://github.com/no-chris/chord-symbol/issues"
},
"homepage": "https://github.com/no-chris/chord-symbol#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@size-limit/preset-small-lib": "^11.0.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cartesian": "^1.0.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc-to-markdown": "^8.0.0",
"lerna": "^8.0.0",
"lerna-changelog": "^2.2.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.1.0",
"rollup": "^4.6.0",
"size-limit": "^11.0.0",
"sloc": "0.2.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "yarn run lint && yarn run format && yarn run test && yarn exec lerna run build",
"lint": "eslint packages",
"format": "prettier --write \"**/*.{js,jsx,json,ts,md,scss,css}\"",
"test": "jest"
},
"keywords": [
"chord",
"chords",
"chord-parsing",
"guitar",
"guitar-chords",
"music",
"music-theory",
"parser",
"piano",
"ukulele"
],
"files": [
"lib",
"src",
"types"
],
"types": "types/index.d.ts",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}