bump package version to 1.4.2
[squeep-indieauth-helper] / package.json
1 {
2 "name": "@squeep/indieauth-helper",
3 "version": "1.4.2",
4 "description": "An opinionated convenience-wrapper for the http requests and content parsing needed to talk IndieAuth.",
5 "main": "index.js",
6 "scripts": {
7 "audit": "npm audit",
8 "coverage": "nyc npm test",
9 "eslint": "eslint index.js lib",
10 "test": "mocha --recursive"
11 },
12 "files": [
13 "lib/**"
14 ],
15 "pre-commit": [
16 "audit",
17 "eslint",
18 "coverage"
19 ],
20 "keywords": [
21 "IndieAuth"
22 ],
23 "repository": {
24 "type": "git",
25 "url": "https://git.squeep.com/squeep-indieauth-helper/"
26 },
27 "engines": {
28 "node": ">=20"
29 },
30 "author": "Justin Wind <jwind-npm@squeep.com>",
31 "license": "ISC",
32 "dependencies": {
33 "@squeep/log-helper": "^1",
34 "@squeep/web-linking": "^1",
35 "got": "^14",
36 "iconv": "^3",
37 "ip-address": "^9",
38 "microformats-parser": "^2"
39 },
40 "devDependencies": {
41 "@squeep/eslint-config": "^1",
42 "eslint": "^9",
43 "mocha": "^10",
44 "nyc": "^15",
45 "pre-commit": "^1",
46 "sinon": "^17"
47 }
48 }