doipjs/package.json

92 lines
2.8 KiB
JSON
Raw Normal View History

2020-10-23 22:35:53 +02:00
{
"name": "doipjs",
2023-10-04 09:13:43 +02:00
"version": "1.2.4",
2022-10-24 21:59:11 +02:00
"description": "Decentralized Online Identity Proofs library in Node.js",
2023-07-08 08:17:13 +02:00
"type": "module",
2022-02-25 13:23:31 +01:00
"main": "./src/index.js",
2023-07-08 08:36:57 +02:00
"exports": {
".": {
2023-07-13 10:40:35 +02:00
"default": "./src/index.js"
2023-07-08 08:36:57 +02:00
},
"./fetchers": {
2023-07-13 10:40:35 +02:00
"default": "./src/fetcher/index.js"
2023-07-08 08:36:57 +02:00
},
"./fetchers-minimal": {
2023-07-13 10:40:35 +02:00
"default": "./src/fetcher/index.minimal.js"
2023-07-08 08:36:57 +02:00
}
},
"packageManager": "yarn@1.22.19",
2020-10-24 11:19:35 +02:00
"dependencies": {
"@openpgp/hkp-client": "^0.0.3",
"@openpgp/wkd-client": "^0.0.4",
2022-03-22 13:39:14 +01:00
"@xmpp/client": "^0.13.1",
"@xmpp/debug": "^0.13.0",
2022-02-08 19:10:23 +01:00
"axios": "^0.25.0",
2021-04-19 11:41:59 +02:00
"browser-or-node": "^1.3.0",
2021-03-25 11:32:03 +01:00
"cors": "^2.8.5",
2023-03-12 21:42:44 +01:00
"entities": "^4.4.0",
2021-03-25 11:32:03 +01:00
"express": "^4.17.1",
2021-04-19 11:41:59 +02:00
"express-validator": "^6.10.0",
2022-09-20 21:37:09 +02:00
"hash-wasm": "^4.9.0",
2021-03-25 11:32:03 +01:00
"irc-upd": "^0.11.0",
2023-07-03 10:19:36 +02:00
"jose": "^4.14.4",
2020-11-06 01:16:39 +01:00
"merge-options": "^3.0.3",
2022-09-30 23:40:52 +02:00
"openpgp": "^5.5.0",
2023-07-03 10:19:36 +02:00
"rfc4648": "^1.5.2",
2021-04-19 11:41:59 +02:00
"valid-url": "^1.0.9",
"validator": "^13.9.0"
2020-10-24 11:19:35 +02:00
},
2020-10-23 22:35:53 +02:00
"devDependencies": {
2023-07-08 08:36:57 +02:00
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
2020-10-23 22:35:53 +02:00
"chai": "^4.2.0",
2020-10-24 20:33:48 +02:00
"chai-as-promised": "^7.1.1",
2021-04-24 12:15:58 +02:00
"clean-jsdoc-theme": "^3.2.4",
2023-05-03 10:45:30 +02:00
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
2021-07-09 14:51:15 +02:00
"husky": "^7.0.0",
2021-04-20 16:42:16 +02:00
"jsdoc": "^3.6.6",
2021-11-15 16:16:15 +01:00
"license-check-and-add": "^4.0.3",
2021-07-09 14:51:15 +02:00
"lint-staged": "^11.0.0",
2022-09-10 16:18:37 +02:00
"minify": "^9.1",
2022-02-08 20:04:10 +01:00
"mocha": "^9.2.0",
2023-07-08 08:36:57 +02:00
"nodemon": "^2.0.19",
"rollup": "^3.26.2",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-visualizer": "^5.9.2"
2020-10-23 22:35:53 +02:00
},
"scripts": {
2023-09-18 17:34:54 +02:00
"release": "node ./prerelease.js && yarn run test && yarn run build",
2023-07-08 08:36:57 +02:00
"build": "rm -rf ./dist/ && yarn run build:bundle && yarn run build:minify",
"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 10:45:30 +02:00
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
2023-07-09 12:04:38 +02:00
"test": "yarn lint && yarn run license:check && yarn run mocha",
2021-07-09 14:51:15 +02:00
"prepare": "husky install"
2020-10-23 22:35:53 +02:00
},
"repository": {
"type": "git",
2020-11-06 21:58:11 +01:00
"url": "https://codeberg.org/keyoxide/doipjs"
2020-10-23 22:35:53 +02:00
},
2020-11-06 21:58:11 +01:00
"homepage": "https://js.doip.rocks",
2020-10-23 22:35:53 +02:00
"keywords": [
"pgp",
"gpg",
"openpgp",
"encryption",
"decentralized",
"identity"
],
"author": "Yarmo Mackenbach <yarmo@yarmo.eu> (https://yarmo.eu)",
2023-07-08 08:36:57 +02:00
"license": "Apache-2.0"
2021-07-09 14:51:15 +02:00
}