2020-10-23 14:35:53 -06:00
|
|
|
{
|
|
|
|
"name": "doipjs",
|
2021-01-02 08:38:13 -07:00
|
|
|
"version": "0.8.4",
|
2020-11-06 13:53:23 -07:00
|
|
|
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
2020-10-23 14:35:53 -06:00
|
|
|
"main": "src/index.js",
|
2020-10-24 03:19:35 -06:00
|
|
|
"dependencies": {
|
2020-10-24 09:24:38 -06:00
|
|
|
"bent": "^7.3.12",
|
2020-10-24 06:36:32 -06:00
|
|
|
"browserify": "^17.0.0",
|
2020-11-05 17:16:39 -07:00
|
|
|
"merge-options": "^3.0.3",
|
2020-12-07 17:33:36 -07:00
|
|
|
"openpgp": "^4.10.9",
|
2020-11-07 17:58:13 -07:00
|
|
|
"prettier": "^2.1.2",
|
2020-10-24 03:19:35 -06:00
|
|
|
"valid-url": "^1.0.9"
|
|
|
|
},
|
2020-10-23 14:35:53 -06:00
|
|
|
"devDependencies": {
|
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",
|
2020-10-23 14:35:53 -06:00
|
|
|
"license-check-and-add": "^3.0.4",
|
2020-11-05 04:14:26 -07:00
|
|
|
"minify": "^6.0.1",
|
2020-10-24 16:40:56 -06:00
|
|
|
"mocha": "^8.2.0"
|
2020-10-23 14:35:53 -06:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-12-09 17:56:34 -07:00
|
|
|
"release:bundle": "./node_modules/browserify/bin/cmd.js ./src/index.js --standalone doip -x openpgp -o ./dist/doip.js",
|
2020-11-05 04:14:26 -07:00
|
|
|
"release:minify": "./node_modules/minify/bin/minify.js ./dist/doip.js > ./dist/doip.min.js",
|
2020-11-07 17:58:13 -07:00
|
|
|
"prettier:check": "./node_modules/prettier/bin-prettier.js --check .",
|
|
|
|
"prettier:write": "./node_modules/prettier/bin-prettier.js --write .",
|
2020-10-23 14:35:53 -06:00
|
|
|
"license:check": "./node_modules/license-check-and-add/dist/src/cli.js check",
|
|
|
|
"license:add": "./node_modules/license-check-and-add/dist/src/cli.js add",
|
|
|
|
"license:remove": "./node_modules/license-check-and-add/dist/src/cli.js remove",
|
2020-11-05 09:34:46 -07:00
|
|
|
"docs": "docsify serve ./docs",
|
2020-10-23 14:35:53 -06:00
|
|
|
"test": "./node_modules/mocha/bin/mocha"
|
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
2020-10-23 14:35:53 -06:00
|
|
|
}
|