mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
06b7d24cce
The new twitter api changes will remove free access to the api, and doing verification without any credentials is easier anyways
79 lines
2.5 KiB
JSON
79 lines
2.5 KiB
JSON
{
|
|
"name": "doipjs",
|
|
"version": "0.18.1",
|
|
"description": "Decentralized Online Identity Proofs library in Node.js",
|
|
"main": "./src/index.js",
|
|
"packageManager": "yarn@1.22.19",
|
|
"dependencies": {
|
|
"@openpgp/hkp-client": "^0.0.2",
|
|
"@openpgp/wkd-client": "^0.0.3",
|
|
"@xmpp/client": "^0.13.1",
|
|
"@xmpp/debug": "^0.13.0",
|
|
"axios": "^0.25.0",
|
|
"browser-or-node": "^1.3.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"express-validator": "^6.10.0",
|
|
"hash-wasm": "^4.9.0",
|
|
"irc-upd": "^0.11.0",
|
|
"merge-options": "^3.0.3",
|
|
"openpgp": "^5.5.0",
|
|
"query-string": "^6.14.1",
|
|
"valid-url": "^1.0.9",
|
|
"validator": "^13.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^17.0.0",
|
|
"browserify-shim": "^3.8.14",
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chai-match-pattern": "^1.2.0",
|
|
"clean-jsdoc-theme": "^3.2.4",
|
|
"husky": "^7.0.0",
|
|
"jsdoc": "^3.6.6",
|
|
"license-check-and-add": "^4.0.3",
|
|
"lint-staged": "^11.0.0",
|
|
"minify": "^9.1",
|
|
"mocha": "^9.2.0",
|
|
"nodemon": "^2.0.19",
|
|
"standard": "^16.0.3"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"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",
|
|
"docs:lib": "./node_modules/.bin/jsdoc -c jsdoc-lib.json -r -d ./docs -P package.json",
|
|
"standard:check": "./node_modules/.bin/standard ./src",
|
|
"standard:fix": "./node_modules/.bin/standard --fix ./src",
|
|
"mocha": "./node_modules/.bin/mocha",
|
|
"test": "yarn run standard:check && yarn run license:check && yarn run mocha",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://codeberg.org/keyoxide/doipjs"
|
|
},
|
|
"homepage": "https://js.doip.rocks",
|
|
"keywords": [
|
|
"pgp",
|
|
"gpg",
|
|
"openpgp",
|
|
"encryption",
|
|
"decentralized",
|
|
"identity"
|
|
],
|
|
"author": "Yarmo Mackenbach <yarmo@yarmo.eu> (https://yarmo.eu)",
|
|
"license": "Apache-2.0",
|
|
"browserify": {
|
|
"transform": [
|
|
"browserify-shim"
|
|
]
|
|
},
|
|
"browserify-shim": {
|
|
"openpgp": "global:openpgp"
|
|
}
|
|
}
|