a7e42839c92447d5dd8066578b57c4e87368017b
[squeep-indieauth-helper] / package.json
1 {
2 "name": "@squeep/indieauth-helper",
3 "version": "1.1.0",
4 "description": "A minimal convenience-wrapper for the http requests and content parsing needed to talk IndieAuth.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "eslint": "eslint *.js lib",
9 "test": "mocha --recursive"
10 },
11 "pre-commit": [
12 "eslint",
13 "coverage"
14 ],
15 "keywords": [
16 "IndieAuth"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "https://git.squeep.com/squeep-indieauth-helper/"
21 },
22 "engines": {
23 "node": ">=12.9"
24 },
25 "author": "Justin Wind <jwind-npm@squeep.com>",
26 "license": "ISC",
27 "dependencies": {
28 "@squeep/web-linking": "git+https://git.squeep.com/squeep-web-linking/#v1.0.3",
29 "axios": "^0.26.0",
30 "iconv": "^3.0.1",
31 "microformats-parser": "^1.4.1"
32 },
33 "devDependencies": {
34 "eslint": "^8.9.0",
35 "eslint-plugin-node": "^11.1.0",
36 "eslint-plugin-security": "^1.4.0",
37 "eslint-plugin-sonarjs": "^0.12.0",
38 "mocha": "^9.2.0",
39 "nyc": "^15.1.0",
40 "pre-commit": "^1.2.2",
41 "sinon": "^13.0.1"
42 }
43 }