UNPKG

indieauth-authentication

Version:

A helper class for creating apps that authenticate via IndieAuth

52 lines (51 loc) 1.36 kB
{ "name": "indieauth-authentication", "version": "0.0.6", "description": "A helper class for creating apps that authenticate via IndieAuth", "keywords": [ "indieauth", "indieweb" ], "homepage": "https://git.schmarty.net/schmarty/indieauth-authentication", "bugs": "https://git.schmarty.net/schmarty/indieauth-authentication/issues", "main": "./dist/main.js", "browser": { "main": "./src/main.js", "./dist/main.js": "./src/main.js", "./src/dependencies.js": "./src/dependencies-browser.js", "jsdom": false, "isomorphic-fetch": false, "form-data": false }, "author": "Marty McGuire <marty@martymcgui.re> (https://martymcgui.re)", "license": "MIT", "dependencies": { "form-data": "^2.3.3", "isomorphic-fetch": "^3.0.0", "jsdom": "^16.5.0", "qs": "^6.7.0" }, "scripts": { "prepublish": "BABEL_ENV=production babel ./src -d ./dist", "test": "mocha --require babel-core/register --require babel-polyfill" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "mocha": "^10.2.0" }, "babel": { "presets": [ "env" ], "plugins": [ "add-module-exports" ] }, "prettier": { "singleQuote": true, "trailingComma": "all" } }