-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 912 Bytes
/
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
{
"name": "envelope-encryption-tools",
"version": "0.1.3",
"main": "lib/main.js",
"description": "Lightweight encryption toolkit to support envelope encryption schemes",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"dependencies": {
"node-forge": "0.7.1"
},
"devDependencies": {
"mocha": "= 3.5.0",
"chai": "= 4.1.1",
"js-beautify": "= 1.6.14",
"find": "= 0.2.7",
"jshint": "= 2.9.5",
"rimraf": "= 2.6.1"
},
"homepage": "https://github.com/SaltwaterC/envelope-encryption-tools",
"author": {
"name": "Stefan Rusu",
"url": "http://www.saltwaterc.eu/"
},
"repository": {
"type": "git",
"url": "git://github.com/SaltwaterC/envelope-encryption-tools.git"
},
"keywords": [
"encryption",
"decryption",
"rsa",
"aes",
"aes-256-gcm",
"aes-256-cbc",
"stream"
],
"scripts": {
"test": "jake test"
}
}