-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.22 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
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
75
76
{
"name": "microformats-parser",
"version": "2.0.1",
"description": "A JavaScript microformats v2 parser for the browser and node.js",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"homepage": "https://microformats.github.io/microformats-parser/",
"repository": "https://github.com/microformats/microformats-parser.git",
"author": "Aimee Gamble-Milner (https://github.com/aimee-gm)",
"license": "MIT",
"keywords": [
"microformats",
"parser",
"mf2",
"indieweb"
],
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"demo": "http-server public",
"lint": "eslint --cache .",
"prettier:list": "prettier '**/*.{ts,json,md,html}' --list-different",
"prettier:fix": "prettier '**/*.{ts,json,md,html}' --write",
"test": "vitest run --coverage ./test/*.spec.ts",
"test:package": "vitest run ./test/package.spec.js"
},
"engines": {
"node": ">=22"
},
"files": [
"/dist/index.js",
"/dist/index.js.map",
"/dist/index.d.ts",
"/CONTRIBUTING.md"
],
"dependencies": {
"parse5": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-html": "^2.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/glob": "^9.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"glob": "^13.0.6",
"http-server": "^14.1.1",
"husky": ">=9",
"lint-staged": ">=17",
"microformat-tests": "https://github.com/microformats/tests",
"prettier": "^3.9.4",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-import-css": "^4.2.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{js,ts,json,css,md,html}": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}