-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.31 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
75
76
77
78
79
80
{
"name": "microformats-parser",
"version": "2.0.1",
"description": "A JavaScript microformats v2 parser for the browser and node.js",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"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 './**/*.{ts,js}'",
"prettier:list": "prettier '**/*.{ts,json,md,html}' --list-different",
"prettier:fix": "prettier '**/*.{ts,json,md,html}' --write",
"test": "c8 mocha ./test/*.spec.ts",
"test:package": "mocha ./test/package.*.spec.js"
},
"engines": {
"node": ">=18"
},
"files": [
"/dist/index.cjs",
"/dist/index.cjs.map",
"/dist/index.mjs",
"/dist/index.mjs.map",
"/dist/index.d.ts",
"/CONTRIBUTING.md"
],
"dependencies": {
"parse5": "^7.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-html": "^1.0.2",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/chai": "^4.2.11",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.0.0",
"c8": "^9.0.0",
"chai": "^5.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"glob": "^10.3.4",
"http-server": "^14.1.1",
"husky": ">=4",
"lint-staged": ">=10",
"microformat-tests": "https://github.com/microformats/tests",
"mocha": "^10.0.0",
"prettier": "^3.0.3",
"rollup": "^4.1.5",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-import-css": "^3.3.3",
"source-map-support": "^0.5.19",
"ts-node": "^10.8.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts,json,css,md,html}": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}