2020-10-23 14:35:53 -06:00
|
|
|
{
|
|
|
|
"name": "doipjs",
|
2022-10-25 02:26:24 -06:00
|
|
|
"version": "0.17.1",
|
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",
|
2020-10-24 03:19:35 -06:00
|
|
|
"dependencies": {
|
2021-11-17 07:53:17 -07:00
|
|
|
"@openpgp/hkp-client": "^0.0.2",
|
|
|
|
"@openpgp/wkd-client": "^0.0.3",
|
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",
|
|
|
|
"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",
|
2022-09-10 08:18:37 -06:00
|
|
|
"jsdom": "^20.0.0",
|
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",
|
2021-03-05 09:07:08 -07:00
|
|
|
"query-string": "^6.14.1",
|
2021-04-19 03:41:59 -06:00
|
|
|
"valid-url": "^1.0.9",
|
|
|
|
"validator": "^13.5.2"
|
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",
|
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",
|
2022-09-10 08:18:37 -06:00
|
|
|
"nodemon": "^2.0.19",
|
2021-07-09 15:47:48 -06:00
|
|
|
"standard": "^16.0.3"
|
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",
|
2021-04-26 08:01:40 -06: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 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",
|
2022-02-08 11:08:18 -07:00
|
|
|
"standard:check": "./node_modules/.bin/standard ./src",
|
|
|
|
"standard:fix": "./node_modules/.bin/standard --fix ./src",
|
2021-07-09 15:47:48 -06:00
|
|
|
"mocha": "./node_modules/.bin/mocha",
|
2022-02-08 11:08:18 -07:00
|
|
|
"test": "yarn run standard:check && yarn run license:check && yarn run mocha",
|
2021-04-15 14:54:45 -06:00
|
|
|
"proxy": "NODE_ENV=production node ./src/proxy/",
|
2021-07-09 06:51:15 -06:00
|
|
|
"proxy:dev": "NODE_ENV=development ./node_modules/.bin/nodemon ./src/proxy/",
|
|
|
|
"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
|
|
|
}
|