-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1020 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": "markdown-it-music",
"version": "2.0.5",
"type": "module",
"description": "Renderer for Music Markdown.",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint .",
"posttest": "eslint .",
"fix-lint": "eslint . --fix"
},
"keywords": [
"markdown-it-plugin"
],
"author": "Shad Sharma <[email protected]>",
"license": "ISC",
"bin": {
"musicmd": "bin/musicmd.js"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"abcjs": "^6.1.6",
"fast-memoize": "^2.5.2",
"global-jsdom": "^9.2.0",
"markdown-it": "^14.0.0",
"markdown-it-fence": "^0.1.3",
"markdown-it-meta": "0.0.1",
"svgdom": "^0.1.8",
"yargs": "^17.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"prettier": "^3.0.3"
}
}