-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.25 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
77
78
79
80
{
"name": "metalsmith-reading-time",
"version": "2.0.7",
"description": "A Metalsmith plugin to estimate pages' reading times.",
"keywords": [
"metalsmith",
"metalsmith-plugin",
"plugin"
],
"homepage": "https://github.com/emmercm/metalsmith-plugins/tree/main/packages/metalsmith-collections-related#readme",
"bugs": {
"url": "https://github.com/emmercm/metalsmith-plugins/issues"
},
"license": "GPL-3.0-or-later",
"author": "Christian Emmer",
"type": "module",
"files": [
"dist",
"!**/vitest.*",
"!**/test/**",
"!**/*.test.*",
"!**/*.tsbuildinfo"
],
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmercm/metalsmith-plugins.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc --build --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node ../../node_modules/vitest/vitest.mjs && eslint .",
"test:update": "node ../../node_modules/vitest/vitest.mjs --coverage.enabled --updateSnapshot",
"test:watch": "node ../../node_modules/vitest/vitest.mjs --watch",
"test:coverage": "node ../../node_modules/vitest/vitest.mjs --coverage.enabled",
"prepack": "npm run build && cp -f ../../LICENSE ./",
"postpack": "rm ./LICENSE"
},
"dependencies": {
"deepmerge": "^4.3.1",
"minimatch": "^10.2.5",
"reading-time": "^1.5.0"
},
"peerDependencies": {
"metalsmith": "^2.5.0"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/eslint-plugin": "^1.6.20",
"assert-dir-equal": "^1.1.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^13.0.0",
"handlebars": "^4.7.9",
"metalsmith": "^2.7.0",
"metalsmith-hbt-md": "^1.0.1",
"prettier": "^3.9.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}