Files
openpgpjs/package.json
2015-12-19 15:25:50 +07:00

64 lines
1.5 KiB
JSON

{
"name": "openpgp",
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
"version": "1.4.1",
"homepage": "http://openpgpjs.org/",
"engines": {
"node": ">=0.8"
},
"keywords": [
"crypto",
"pgp",
"gpg",
"openpgp"
],
"main": "src/index.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": {
"browserify": "~2.35",
"chai": "~2.3.0",
"coveralls": "^2.11.2",
"grunt": "~0.4.5",
"grunt-browserify": "~1.2.11",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.10.1",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "~0.9.1",
"grunt-jsbeautifier": "~0.2.10",
"grunt-jsdoc": "*",
"grunt-mocha-istanbul": "^2.4.0",
"grunt-mocha-test": "~0.12.7",
"grunt-saucelabs": "8.6.1",
"grunt-text-replace": "~0.4.0",
"istanbul": "^0.3.13",
"mocha": "~2.2.4",
"node-fetch": "^1.3.3",
"whatwg-fetch": "^0.10.1"
},
"dependencies": {
"es6-promise": "^1.0.0",
"node-localstorage": "~0.3.4",
"zlibjs": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openpgpjs/openpgpjs"
}
}