-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 779 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 779 Bytes
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
{
"name": "nwc-viewer",
"version": "2.2.0",
"description": "Viewer for Noteworthy Composer files",
"main": "index.js",
"type": "module",
"bin": {
"nwc-parse": "./bin/nwc-parse.js",
"nwc2xml": "./bin/nwc2xml.js"
},
"scripts": {
"test": "bun test test/*.test.js",
"test:integration": "playwright test",
"test:integration:update": "UPDATE_SNAPSHOTS=1 playwright test --update-snapshots",
"test:score": "bun test/integration/scorer.js",
"test:all": "playwright test && bun test/integration/scorer.js"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
},
"author": "Joshua Koo",
"bugs": {
"url": "https://github.com/zz85/nwc-viewer/issues"
},
"homepage": "https://github.com/zz85/nwc-viewer",
"license": "GNU"
}