-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rekordbox-parser",
"version": "0.1.2",
"author": "Evan Purkhiser <evanpurkhiser@gmail.com>",
"license": "LGPL-3.0-or-later",
"keywords": [
"CDJ",
"DJ",
"pioneer",
"rekordbox",
"dysentery",
"dysentery",
"crate-digger"
],
"main": "lib/index.js",
"sideEffects": false,
"files": [
"lib/*",
"LICENSE",
"README.md",
"package.json"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"kaitai-struct": "^0.10.0"
},
"devDependencies": {
"@evanpurkhiser/eslint-config": "^0.13.0",
"@octokit/types": "^8.0.0",
"@types/node": "^18.11.5",
"@types/prettier": "^2.7.1",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"kaitai-struct-compiler": "^0.10.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"yaml": "^2.1.3"
},
"scripts": {
"build": "tsc",
"build-parsers": "ts-node-esm --project tsconfig.update.json src/update.mts",
"lint": "eslint src/*",
"test": "jest"
},
"volta": {
"node": "18.11.0",
"yarn": "1.22.18"
}
}