-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@paulrobertlloyd/mf2tojf2",
"version": "2.4.0",
"description": "Convert MF2 to JF2",
"keywords": [
"microformats",
"mf2",
"jf2"
],
"homepage": "https://github.com/paulrobertlloyd/mf2tojf2#readme",
"author": {
"name": "Paul Robert Lloyd",
"url": "https://paulrobertlloyd.com"
},
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"type": "module",
"main": "index.js",
"files": [
"lib",
"index.js"
],
"bugs": "https://github.com/paulrobertlloyd/mf2tojf2/issues",
"repository": "git://github.com/paulrobertlloyd/mf2tojf2.git",
"scripts": {
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint": "npm run lint:prettier && npm run lint:js",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix",
"test": "node --test --test-reporter spec",
"test:coverage": "node --test --experimental-test-coverage",
"release": "np",
"prepare": "husky install"
},
"dependencies": {
"microformats-parser": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.0.0",
"np": "^10.0.0",
"prettier": "^3.0.0",
"undici": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}