fork-openpgpjs/package.json
Daniel Kahn Gillmor 4da28fcc29 move from http to https where possible.
There are dozens of links in the OpenPGP.js codebase that are http but
could be replaced with https links.  I've converted as many of them as
i could find.
2018-02-01 09:58:06 -05:00

73 lines
1.7 KiB
JSON

{
"name": "openpgp",
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
"version": "2.6.2",
"license": "LGPL-3.0+",
"homepage": "https://openpgpjs.org/",
"engines": {
"node": ">=0.8"
},
"keywords": [
"crypto",
"pgp",
"gpg",
"openpgp"
],
"main": "dist/openpgp.js",
"directories": {
"lib": "src"
},
"files": [
"src/",
"dist/openpgp.js",
"dist/openpgp.worker.js",
"dist/openpgp.min.js",
"dist/openpgp.worker.min.js",
"test/unittests.js",
"test/general",
"test/crypto"
],
"scripts": {
"pretest": "grunt",
"test": "grunt test"
},
"devDependencies": {
"asmcrypto-lite": "^1.0.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^8.0.0",
"browserify-derequire": "^0.9.4",
"chai": "~4.1.2",
"es6-promise": "^4.1.1",
"grunt": "~1.0.1",
"grunt-browserify": "~5.2.0",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~3.2.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsbeautifier": "~0.2.10",
"grunt-jscs": "^3.0.1",
"grunt-jsdoc": "~2.2.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-mocha-test": "~0.13.3",
"grunt-saucelabs": "9.0.0",
"grunt-text-replace": "~0.4.0",
"istanbul": "~0.4.1",
"mocha": "~4.0.1",
"rusha": "^0.8.3",
"sinon": "^1.17.3",
"whatwg-fetch": "~2.0.3",
"zlibjs": "~0.3.1"
},
"dependencies": {
"node-fetch": "^1.3.3",
"node-localstorage": "~1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openpgpjs/openpgpjs"
}
}