doipjs/package.json

81 lines
2.6 KiB
JSON
Raw Normal View History

2020-10-23 22:35:53 +02:00
{
"name": "doipjs",
2022-03-28 00:37:33 +02:00
"version": "0.15.6",
2020-11-06 21:53:23 +01:00
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
2022-02-25 13:23:31 +01:00
"main": "./src/index.js",
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",
"express": "^4.17.1",
2021-04-19 11:41:59 +02:00
"express-validator": "^6.10.0",
2021-03-25 11:32:03 +01:00
"irc-upd": "^0.11.0",
"jsdom": "^16.5.1",
2020-11-06 01:16:39 +01:00
"merge-options": "^3.0.3",
2021-11-17 15:53:17 +01:00
"openpgp": "^5.0",
2021-03-05 17:07:08 +01:00
"query-string": "^6.14.1",
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",
2020-11-05 12:14:26 +01:00
"minify": "^6.0.1",
2022-02-08 20:04:10 +01:00
"mocha": "^9.2.0",
2022-03-22 13:39:14 +01:00
"nodemon": "^2.0.15",
"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",
2021-04-26 16:01:40 +02:00
"release:bundle": "./node_modules/.bin/browserify ./src/index.js --standalone doip -x openpgp -x jsdom -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",
2022-02-08 19:08:18 +01:00
"test": "yarn run standard:check && yarn run license:check && yarn run mocha",
2021-04-15 22:54:45 +02:00
"proxy": "NODE_ENV=production node ./src/proxy/",
2021-07-09 14:51:15 +02:00
"proxy:dev": "NODE_ENV=development ./node_modules/.bin/nodemon ./src/proxy/",
"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
}