-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "quick-encrypt",
"version": "1.0.8",
"description": "Easily generate RSA Public-Private Keypairs and use them for secure asymmetric one-way encryption and decryption!",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js",
"test:coverage": "istanbul cover tape ./test/test.js",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"engines": {
"node": ">=8.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuaquek/QuickEncrypt.git"
},
"author": "Joshua Quek",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshuaquek/QuickEncrypt/issues"
},
"homepage": "https://github.com/joshuaquek/QuickEncrypt#readme",
"dependencies": {
"keypair": "1.0.4"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^6.0.0",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^13.0.1",
"tape": "^4.10.2",
"testdouble": "^3.8.2"
},
"keywords": [
"crypto",
"encrypt",
"decrypt",
"encryption",
"decryption",
"cipher",
"aes-256",
"aes256",
"rsa",
"asymmetric",
"aes",
"quick-encrypt"
]
}