85 lines
2.6 KiB
JSON
85 lines
2.6 KiB
JSON
{
|
|
"name": "openpgp",
|
|
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
|
|
"version": "4.10.10",
|
|
"license": "LGPL-3.0+",
|
|
"homepage": "https://openpgpjs.org/",
|
|
"engines": {
|
|
"node": ">= 8.0.0"
|
|
},
|
|
"keywords": [
|
|
"crypto",
|
|
"pgp",
|
|
"gpg",
|
|
"openpgp"
|
|
],
|
|
"main": "dist/node/openpgp.min.js",
|
|
"module": "dist/node/openpgp.min.mjs",
|
|
"browser": {
|
|
"./dist/node/openpgp.min.js": "./dist/openpgp.min.js",
|
|
"./dist/node/openpgp.min.mjs": "./dist/openpgp.min.mjs"
|
|
},
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"dist/",
|
|
"test/unittests.js",
|
|
"test/general",
|
|
"test/crypto"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup --config --sourcemap",
|
|
"prepare": "npm run build",
|
|
"test": "mocha --timeout 120000 test/unittests.js",
|
|
"start": "http-server",
|
|
"browsertest": "npm start -- -o test/unittests.html",
|
|
"coverage": "nyc npm test",
|
|
"lint": "eslint 'src/**/*.js' 'test/crypto/**/*.js'",
|
|
"docs": "jsdoc --configure .jsdocrc.js --destination docs --recurse README.md src"
|
|
},
|
|
"devDependencies": {
|
|
"@mattiasbuelens/web-streams-adapter": "0.1.0-alpha.5",
|
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
"@rollup/plugin-replace": "^2.3.2",
|
|
"asmcrypto.js": "github:openpgpjs/asmcrypto#475cffa5ccb2cf2556427056679414acf3610d1b",
|
|
"bn.js": "^4.11.8",
|
|
"buffer": "^5.0.8",
|
|
"chai": "^4.1.2",
|
|
"chai-as-promised": "^7.1.1",
|
|
"core-js": "^2.5.3",
|
|
"elliptic": "github:openpgpjs/elliptic#ab7d8268c60b6abeb175841c578c224ac5b2d279",
|
|
"email-addresses": "3.1.0",
|
|
"eslint": "^4.17.0",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-config-airbnb-base": "^12.1.0",
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
"eslint-plugin-import": "^2.8.0",
|
|
"hash.js": "^1.1.3",
|
|
"http-server": "^0.12.3",
|
|
"jsdoc": "github:openpgpjs/jsdoc#0f1816eb4553856647b4ca9561b9307b11ec4f9e",
|
|
"mocha": "^5.0.0",
|
|
"nyc": "^14.1.1",
|
|
"pako": "^1.0.6",
|
|
"rollup": "^2.7.2",
|
|
"rollup-plugin-terser": "^5.3.0",
|
|
"seek-bzip": "github:openpgpjs/seek-bzip#6187fc025851d35c4e104a25ea15a10b9b8d6f7d",
|
|
"sinon": "^4.3.0",
|
|
"text-encoding-utf-8": "^1.0.2",
|
|
"tweetnacl": "github:openpgpjs/tweetnacl-js#3dae25bd3eaa77173f3405676b595721dde92eec",
|
|
"web-stream-tools": "github:openpgpjs/web-stream-tools#5e6cb1a976d50c421091907615cf7cce77ac4f2a",
|
|
"whatwg-fetch": "^2.0.3"
|
|
},
|
|
"dependencies": {
|
|
"asn1.js": "^5.0.0",
|
|
"node-fetch": "^2.1.2",
|
|
"node-localstorage": "~1.3.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openpgpjs/openpgpjs"
|
|
}
|
|
}
|