-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "remark-abcjs",
"version": "0.1.6",
"description": "A Remark plugin for embedding sheet music using ABCjs.",
"main": "index.js",
"files": [
"/dist",
"/node_modules/abcjs/src/**/*"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"build:mjs": "babel index.js --out-file dist/index.mjs --config-file ./mjs.babel.config.json",
"build:cjs": "babel index.js --out-file dist/index.cjs --config-file ./cjs.babel.config.json",
"build:bundle": "cp -r node_modules/abcjs dist/abcjs",
"build": "npm run build:mjs && npm run build:cjs && npm run build:bundle",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/breqdev/remark-abcjs.git"
},
"keywords": [
"remark",
"abcjs"
],
"author": "Brooke Chalmers",
"license": "MIT",
"bugs": {
"url": "https://github.com/breqdev/remark-abcjs/issues"
},
"homepage": "https://github.com/breqdev/remark-abcjs#readme",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"dependencies": {
"hast-util-from-dom": "^3.0.0",
"jsdom": "^19.0.0",
"patch-package": "^6.4.7",
"unified": "^10.1.1",
"unist-util-map": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"babel-plugin-add-module-exports": "^1.0.4",
"jest": "^27.4.5",
"abcjs": "6.0.0-beta.35",
"remark-parse": "^10.0.1"
}
}