-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@eatonfyi/dq",
"version": "1.0.1",
"description": "Dancing Queen, the ABA book parser.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"/dist",
"README.md"
],
"scripts": {
"build": "shx rm -rf dist; shx rm -rf .tsimp; pkgroll --minify",
"format": "prettier --config prettier.config.js 'src/**/*.ts' --write",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"prepare": "npm run build",
"example": "tsimp ./src/example.ts",
"test": "ava"
},
"author": "eaton",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eaton/cover-me.git"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/jszip": "^3.4.1",
"@types/micromatch": "^4.0.7",
"@types/node": "^20.11.30",
"@types/xml2js": "^0.4.14",
"ava": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"pkgroll": "^2.0.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"shx": "^0.3.4",
"tsimp": "^2.0.11",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"@types/turndown": "^5.0.4",
"cheerio": "^1.0.0",
"fs-jetpack": "^5.1.0",
"gray-matter": "^4.0.3",
"jimp": "^0.22.12",
"jszip": "^3.10.1",
"micromatch": "^4.0.7",
"p-reflect": "^3.1.0",
"p-settle": "^5.1.1",
"turndown": "^7.2.0",
"utimes": "^5.2.1",
"wretch": "^2.9.0",
"xml-query": "^1.5.0",
"xml-reader": "^2.4.3",
"xml2js": "^0.6.2",
"xmldom-ts": "^0.3.1",
"zod": "^3.23.8"
}
}