-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "wavedrom-cli",
"version": "3.2.0",
"description": "WaveDrom command-line interface (CLI)",
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"homepage": "https://github.com/wavedrom/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/cli.git"
},
"files": [
"wavedrom-cli.js"
],
"bugs": {
"url": "https://github.com/wavedrom/cli/issues"
},
"main": "lib/index.js",
"bin": {
"wavedrom-cli": "./wavedrom-cli.js"
},
"keywords": [
"WaveDrom"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "for f in test/src/*.js; do ./wavedrom-cli.js -i $f -s test/res/$(basename ${f} .${f##*.}).svg -p test/res/$(basename ${f} .${f##*.}).png; done",
"test-win": "for /F %f in ('dir /b test\\src\\*.js') do node wavedrom-cli.js -i test/src/%f -s test/res/%~nf.svg -p test/res/%~nf.png"
},
"dependencies": {
"fs-extra": "^11.2.0",
"json5": "^2.2.3",
"onml": "^2.1.0",
"svg2img": "^1.0.0-beta.2",
"wavedrom": "^3.5.0",
"yargs": "^17.7.2"
}
}