doipjs/package.json

88 lines
2.7 KiB
JSON
Raw Normal View History

2020-10-23 14:35:53 -06:00
{
"name": "doipjs",
2023-07-04 04:23:09 -06:00
"version": "0.19.0",
2022-10-24 13:59:11 -06:00
"description": "Decentralized Online Identity Proofs library in Node.js",
2022-02-25 05:23:31 -07:00
"main": "./src/index.js",
"packageManager": "yarn@1.22.19",
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",
2022-02-08 11:10:23 -07:00
"axios": "^0.25.0",
2021-04-19 03:41:59 -06:00
"browser-or-node": "^1.3.0",
2021-03-25 04:32:03 -06:00
"cors": "^2.8.5",
"dotenv": "^8.2.0",
2023-03-12 14:42:44 -06:00
"entities": "^4.4.0",
2021-03-25 04:32:03 -06:00
"express": "^4.17.1",
2021-04-19 03:41:59 -06:00
"express-validator": "^6.10.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",
2023-03-06 13:40:02 -07:00
"rome": "^11.0.0",
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": {
2021-04-20 08:42:16 -06:00
"browserify": "^17.0.0",
2020-12-09 17:56:34 -07:00
"browserify-shim": "^3.8.14",
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",
2020-10-24 14:25:00 -06:00
"chai-match-pattern": "^1.2.0",
2021-04-24 04:15:58 -06:00
"clean-jsdoc-theme": "^3.2.4",
2023-05-03 02:45:30 -06: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",
2023-07-04 04:19:11 -06:00
"esmify": "^2.1.1",
2021-07-09 06:51:15 -06:00
"husky": "^7.0.0",
2021-04-20 08:42:16 -06:00
"jsdoc": "^3.6.6",
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-05-03 02:45:30 -06:00
"nodemon": "^2.0.19"
2020-10-23 14:35:53 -06:00
},
"scripts": {
2022-02-25 13:42:23 -07:00
"release": "yarn run test && yarn run release:bundle && yarn run release:minify",
2023-07-04 04:19:11 -06:00
"release:bundle": "./node_modules/.bin/browserify ./src/index.js --standalone doip -p esmify -x openpgp -x @xmpp/client -x @xmpp/debug -x irc-upd -o ./dist/doip.js",
2021-04-20 08:42:16 -06: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 07:27:31 -06:00
"docs:lib": "./node_modules/.bin/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",
"mocha": "./node_modules/.bin/mocha",
2023-05-03 02:47:50 -06:00
"test": "yarn lint && yarn rome check ./src/* && yarn run license:check && yarn run 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)",
2020-12-09 17:56:34 -07:00
"license": "Apache-2.0",
"browserify": {
2020-12-20 15:20:32 -07:00
"transform": [
"browserify-shim"
]
2020-12-09 17:56:34 -07:00
},
"browserify-shim": {
"openpgp": "global:openpgp"
}
2021-07-09 06:51:15 -06:00
}