-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "lor-deck-encoder",
"version": "2.1.0",
"description": "Legends of Runeterra Deck Encoder",
"author": "Chrysomallos",
"repository": {
"type": "git",
"url": "git+https://github.com/chrysomallos/lor-deck-encoder.git"
},
"license": "MIT",
"type": "module",
"exports": "./index.mjs",
"types": "./index.d.mts",
"dependencies": {
"camelcase": "^9.0.0",
"json-stringify-pretty-compact": "^4.0.0",
"minimist": "^1.2.8",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-syntax-import-assertions": "^7.28.6",
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"eslint": "^10.0.2",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-mocha": "^11.2.0",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"quibble": "^0.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"scripts": {
"cli": "node ./cli.mjs",
"test:unit": "mocha ./test/unit/*.spec.mjs",
"test:performance": "mocha ./test/performance/*.perf.mjs",
"test:coverage": "c8 mocha ./test/unit/*.spec.mjs",
"build:lint": "eslint src/**.mjs utils/**.mjs",
"build:types": "npx -p typescript tsc"
},
"packageManager": "yarn@4.10.3"
}