-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "@breadcrum/extract-meta",
"version": "1.0.6",
"description": "Extract various metadata from html",
"files": [
"*.js",
"lib/*.js"
],
"type": "module",
"module": "index.js",
"exports": {
"import": "./index.js"
},
"scripts": {
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s test:*",
"test-skip:standard": "standard",
"test:tap": "tap",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md"
},
"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",
"devDependencies": {
"auto-changelog": "^2.0.0",
"desm": "^1.3.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^7.0.1",
"standard": "^17.0.0",
"tap": "^21.0.0",
"jsdom": "^24.0.0"
},
"dependencies": {},
"tap": {
"serial": [],
"typecheck": false,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
]
},
"engines": {
"node": ">=19",
"npm": ">=8"
}
}