doipjs/package.json

90 lines
2.7 KiB
JSON
Raw Permalink Normal View History

2020-10-23 14:35:53 -06:00
{
"name": "doipjs",
2024-11-25 09:52:27 -07:00
"version": "2.1.0-rc.2",
2022-10-24 13:59:11 -06:00
"description": "Decentralized Online Identity Proofs library in Node.js",
2023-07-08 00:17:13 -06:00
"type": "module",
"packageManager": "npm@10.9.0",
2022-02-25 05:23:31 -07:00
"main": "./src/index.js",
2023-07-08 00:36:57 -06:00
"exports": {
".": {
2023-07-13 02:40:35 -06:00
"default": "./src/index.js"
2023-07-08 00:36:57 -06:00
},
"./fetchers": {
2023-07-13 02:40:35 -06:00
"default": "./src/fetcher/index.js"
2023-07-08 00:36:57 -06:00
},
"./fetchers-minimal": {
2023-07-13 02:40:35 -06:00
"default": "./src/fetcher/index.minimal.js"
2023-07-08 00:36:57 -06:00
}
},
2020-10-24 03:19:35 -06:00
"dependencies": {
"@openpgp/hkp-client": "^0.0.3",
"@openpgp/wkd-client": "^0.0.4",
2022-03-22 06:39:14 -06:00
"@xmpp/client": "^0.13.1",
"@xmpp/debug": "^0.13.0",
2024-01-22 16:27:11 -07:00
"axios": "^1.6.5",
2021-04-19 03:41:59 -06:00
"browser-or-node": "^1.3.0",
2023-03-12 14:42:44 -06:00
"entities": "^4.4.0",
2022-09-20 13:37:09 -06:00
"hash-wasm": "^4.9.0",
2021-03-25 04:32:03 -06:00
"irc-upd": "^0.11.0",
2023-07-03 02:19:36 -06:00
"jose": "^4.14.4",
2020-11-05 17:16:39 -07:00
"merge-options": "^3.0.3",
2022-09-30 15:40:52 -06:00
"openpgp": "^5.5.0",
2023-07-03 02:19:36 -06:00
"rfc4648": "^1.5.2",
2021-04-19 03:41:59 -06:00
"valid-url": "^1.0.9",
"validator": "^13.9.0"
2020-10-24 03:19:35 -06:00
},
2020-10-23 14:35:53 -06:00
"devDependencies": {
2023-07-08 00:36:57 -06:00
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
2020-10-23 14:35:53 -06:00
"chai": "^4.2.0",
2020-10-24 12:33:48 -06:00
"chai-as-promised": "^7.1.1",
2024-01-29 17:13:36 -07:00
"docdash": "^2.0.2",
2023-05-03 02:45:30 -06:00
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
2024-01-27 09:58:36 -07:00
"eslint-plugin-jsdoc": "^48.0.4",
2023-05-03 02:45:30 -06:00
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
2021-07-09 06:51:15 -06:00
"husky": "^7.0.0",
2024-01-22 16:27:11 -07:00
"jsdoc": "^4.0.2",
2024-01-28 04:15:03 -07:00
"jsdoc-tsimport-plugin": "^1.0.5",
2021-11-15 08:16:15 -07:00
"license-check-and-add": "^4.0.3",
2021-07-09 06:51:15 -06:00
"lint-staged": "^11.0.0",
2022-09-10 08:18:37 -06:00
"minify": "^9.1",
2022-02-08 12:04:10 -07:00
"mocha": "^9.2.0",
2023-07-08 00:36:57 -06:00
"rollup": "^3.26.2",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-visualizer": "^5.9.2"
2020-10-23 14:35:53 -06:00
},
"scripts": {
2024-06-02 06:02:10 -06:00
"build": "rm -rf ./dist/ && npm run build:bundle && npm run build:minify",
2023-07-08 00:36:57 -06:00
"build:bundle": "rollup -c",
"build:minify": "minify ./dist/doip.core.js > ./dist/doip.core.min.js && minify ./dist/doip.fetchers.js > ./dist/doip.fetchers.min.js && minify ./dist/doip.fetchers.minimal.js > ./dist/doip.fetchers.minimal.min.js",
"license:check": "license-check-and-add check",
"license:add": "license-check-and-add add",
"license:remove": "license-check-and-add remove",
"docs:lib": "jsdoc -c jsdoc-lib.json -r -d ./docs -P package.json",
2023-05-03 02:45:30 -06:00
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"pretest": "node ./prerelease.js && npm run lint && npm run license:check",
2024-06-15 11:23:07 -06:00
"test": "mocha",
2021-07-09 06:51:15 -06:00
"prepare": "husky install"
2020-10-23 14:35:53 -06:00
},
"repository": {
"type": "git",
2020-11-06 13:58:11 -07:00
"url": "https://codeberg.org/keyoxide/doipjs"
2020-10-23 14:35:53 -06:00
},
2020-11-06 13:58:11 -07:00
"homepage": "https://js.doip.rocks",
2020-10-23 14:35:53 -06:00
"keywords": [
"pgp",
"gpg",
"openpgp",
"encryption",
"decentralized",
"identity"
],
"author": "Yarmo Mackenbach <yarmo@yarmo.eu> (https://yarmo.eu)",
2023-07-08 00:36:57 -06:00
"license": "Apache-2.0"
2021-07-09 06:51:15 -06:00
}