-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
81
{
"name": "@breadcrum/bookmarklet",
"description": "Bookmarklet for breadcrum.net",
"files": [
"dist/*.js",
"dist/*.js.map",
"./version.js"
],
"version": "1.0.12",
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/bc-bookmarklet/issues"
},
"devDependencies": {
"auto-changelog": "^2.0.0",
"dependency-cruiser": "^16.0.0",
"desm": "^1.3.0",
"esbuild": "^0.24.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^7.0.1",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^21.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"homepage": "https://github.com/hifiwi-fi/bc-bookmarklet",
"keywords": [],
"license": "MIT",
"type": "module",
"module": "./dist/out.js",
"main": "./dist/out.js",
"exports": {
".": "./dist/out.js",
"./dist/out.js": "./dist/out.js",
"./dist/out.js.map": "./dist/out.js.map",
"./dist/version.js": "./dist/version.js",
"./dist/version.js.map": "./dist/version.js.map"
},
"repository": {
"type": "git",
"url": "https://github.com/hifiwi-fi/bc-bookmarklet.git"
},
"scripts": {
"prepare": "rm -rf dist && run-s build",
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s test:*",
"test:build": "run-s build",
"test:deptree": "depcruise --validate .dependency-cruiser.json .",
"test:standard": "standard --verbose | snazzy",
"test:tap": "tap",
"version": "run-s prepare version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md dist",
"deps": "depcruise --exclude '^node_modules' --output-type dot . | dot -T svg | depcruise-wrap-stream-in-html > dependency-graph.html",
"build": "node scripts/build.js"
},
"standard": {
"ignore": [
"dist"
]
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"tap": {
"serial": [],
"typecheck": false,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
]
},
"dependencies": {
"@breadcrum/extract-meta": "2.0.0"
}
}