forked from openpgpjs/openpgpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "openpgp",
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
"version": "1.2.0",
"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": "~1.8.1",
"grunt": "~0.4.2",
"grunt-browserify": "~1.2.11",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "~0.3.2",
"grunt-jsbeautifier": "~0.2.6",
"grunt-jsdoc": "*",
"grunt-mocha-test": "~0.8.1",
"grunt-text-replace": "~0.3.11",
"mocha": "~1.15.1",
"mocha-phantomjs": "~3.1.6",
"phantomjs": "~1.9.2-5"
},
"dependencies": {
"es6-promise": "^1.0.0",
"node-localstorage": "~0.3.4",
"zlibjs": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openpgpjs/openpgpjs"
}
}