-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 949 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": "parsetab",
"version": "0.0.1",
"description": " TabCode command-line and browser processing.",
"type": "module",
"exports": {
".": "./index.js",
"./parser": "./src/parser/parser.js",
"./parser/*": "./src/parser/*.js",
"./utils/*": "./src/utils/*.js"
},
"bin": {
"parsetab": "./bin/cli.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "node build/config.js"
},
"keywords": [
"TabCode"
],
"author": "Jamie Forth",
"contributors": [
"Tim Crawford",
"David Lewis"
],
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@stylistic/eslint-plugin": "^2.3.0",
"esbuild": "0.23.0",
"esbuild-plugin-clean": "^1.0.1",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"jest": "^29.7.0"
},
"dependencies": {
"commander": "^12.1.0",
"fast-xml-parser": "^4.4.0"
}
}