forked from rzcoder/node-rsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 836 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 836 Bytes
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
{
"name": "node-rsa",
"version": "0.2.25",
"description": "Node.js RSA library",
"main": "src/NodeRSA.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/rzcoder/node-rsa.git"
},
"keywords": [
"node",
"rsa",
"crypto",
"assymetric",
"encryption",
"decryption",
"sign",
"verify",
"pkcs1",
"oaep",
"pss"
],
"author": "rzcoder",
"license": "BSD",
"bugs": {
"url": "https://github.com/rzcoder/node-rsa/issues"
},
"homepage": "https://github.com/rzcoder/node-rsa",
"devDependencies": {
"grunt": "0.4.5",
"grunt-simple-mocha": "0.4.0",
"jit-grunt": "0.9.1",
"chai": "2.0.0",
"grunt-contrib-jshint": "0.11.0"
},
"dependencies": {
"asn1": "^0.2.3",
"lodash": "3.3.0"
}
}