-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.88 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
{
"name": "@breadcrum/extract-meta",
"version": "2.0.1",
"description": "Extract various metadata from html",
"type": "module",
"module": "index.js",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run build && git push --follow-tags && gh-release -y",
"postpublish": "npm run clean",
"test": "run-s test:*",
"test:lint": "eslint",
"test:node": "node --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.info --test",
"test:tsc": "tsc",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"clean": "run-p clean:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f \\( -name '*.d.ts*' -o -name '*.cts*' \\))",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')",
"build": "npm run clean && run-p build:*",
"build:declaration": "tsc -p declaration.tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hifiwi-fi/extract-meta.git"
},
"keywords": [
"html-metadata",
"extract-title"
],
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hifiwi-fi/extract-meta/issues"
},
"homepage": "https://github.com/hifiwi-fi/extract-meta#readme",
"dependencies": {
"@types/jsdom": "^28.0.0",
"@types/node": "^26.0.0"
},
"devDependencies": {
"@voxpelli/tsconfig": "^16.1.0",
"auto-changelog": "^2.0.0",
"desm": "^1.3.0",
"gh-release": "^8.1.0",
"jsdom": "^30.0.1",
"neostandard": "^0.13.0",
"npm-run-all2": "^9.0.0",
"typescript": "~6.0.3"
},
"engines": {
"node": ">=19",
"npm": ">=8"
}
}