mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2026-02-28 22:13:33 +00:00
* Add grunt-jscs and .jscsrc (lint trailing whitespaces and indentation length) * Cleanup .jshintrc (use globals instead of deprecated predefs) * Add Gruntfile.js and *.json linting to npm test N.B. This does not lint the whole src/ directory during grunt test but this should definitely be our goal. Please try to de-lint any js files you touch during development using a texteditor that support linting (Sublime Text 3 and SublimeLinter 3 with jshint/jscs plugins work great)
66 lines
1.5 KiB
JSON
66 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.5.7",
|
|
"license": "LGPL-3.0+",
|
|
"homepage": "http://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": {
|
|
"chai": "~3.4.1",
|
|
"coveralls": "^2.11.2",
|
|
"grunt": "~0.4.5",
|
|
"grunt-browserify": "~4.0.1",
|
|
"grunt-contrib-clean": "~0.7.0",
|
|
"grunt-contrib-connect": "~0.11.2",
|
|
"grunt-contrib-copy": "~0.8.0",
|
|
"grunt-contrib-jshint": "~0.12.0",
|
|
"grunt-contrib-uglify": "~0.11.0",
|
|
"grunt-jsbeautifier": "~0.2.10",
|
|
"grunt-jscs": "^2.7.0",
|
|
"grunt-jsdoc": "~1.1.0",
|
|
"grunt-mocha-istanbul": "^3.0.1",
|
|
"grunt-mocha-test": "~0.12.7",
|
|
"grunt-saucelabs": "8.6.2",
|
|
"grunt-text-replace": "~0.4.0",
|
|
"istanbul": "~0.4.1",
|
|
"mocha": "~2.3.4",
|
|
"whatwg-fetch": "~0.11.0"
|
|
},
|
|
"dependencies": {
|
|
"es6-promise": "^1.0.0",
|
|
"node-fetch": "^1.3.3",
|
|
"node-localstorage": "~1.1.2",
|
|
"zlibjs": "~0.2.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openpgpjs/openpgpjs"
|
|
}
|
|
}
|