doipjs/package.json

81 lines
2.5 KiB
JSON
Raw Normal View History

2020-10-23 22:35:53 +02:00
{
"name": "doipjs",
2023-03-08 14:18:16 +01:00
"version": "0.18.2",
2022-10-24 21:59:11 +02:00
"description": "Decentralized Online Identity Proofs library in Node.js",
2022-02-25 13:23:31 +01:00
"main": "./src/index.js",
"packageManager": "yarn@1.22.19",
2020-10-24 11:19:35 +02:00
"dependencies": {
2021-11-17 15:53:17 +01:00
"@openpgp/hkp-client": "^0.0.2",
"@openpgp/wkd-client": "^0.0.3",
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",
"dotenv": "^8.2.0",
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",
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-03-06 21:40:02 +01:00
"rome": "^11.0.0",
2021-04-19 11:41:59 +02:00
"valid-url": "^1.0.9",
"validator": "^13.5.2"
2020-10-24 11:19:35 +02:00
},
2020-10-23 22:35:53 +02:00
"devDependencies": {
2021-04-20 16:42:16 +02:00
"browserify": "^17.0.0",
2020-12-10 01:56:34 +01:00
"browserify-shim": "^3.8.14",
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",
2020-10-24 22:25:00 +02:00
"chai-match-pattern": "^1.2.0",
2021-04-24 12:15:58 +02:00
"clean-jsdoc-theme": "^3.2.4",
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",
2022-09-10 16:18:37 +02:00
"nodemon": "^2.0.19",
"standard": "^16.0.3"
2020-10-23 22:35:53 +02:00
},
"scripts": {
2022-02-25 21:42:23 +01:00
"release": "yarn run test && yarn run release:bundle && yarn run release:minify",
"release:bundle": "./node_modules/.bin/browserify ./src/index.js --standalone doip -x openpgp -x @xmpp/client -x @xmpp/debug -x irc-upd -o ./dist/doip.js",
2021-04-20 16:42:16 +02:00
"release:minify": "./node_modules/.bin/minify ./dist/doip.js > ./dist/doip.min.js",
"license:check": "./node_modules/.bin/license-check-and-add check",
"license:add": "./node_modules/.bin/license-check-and-add add",
"license:remove": "./node_modules/.bin/license-check-and-add remove",
2021-07-23 15:27:31 +02:00
"docs:lib": "./node_modules/.bin/jsdoc -c jsdoc-lib.json -r -d ./docs -P package.json",
2022-02-08 19:08:18 +01:00
"standard:check": "./node_modules/.bin/standard ./src",
"standard:fix": "./node_modules/.bin/standard --fix ./src",
"mocha": "./node_modules/.bin/mocha",
2023-03-06 21:40:02 +01:00
"test": "yarn run standard:check && yarn rome check ./src/* && 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)",
2020-12-10 01:56:34 +01:00
"license": "Apache-2.0",
"browserify": {
2020-12-20 23:20:32 +01:00
"transform": [
"browserify-shim"
]
2020-12-10 01:56:34 +01:00
},
"browserify-shim": {
"openpgp": "global:openpgp"
}
2021-07-09 14:51:15 +02:00
}