-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 793 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 793 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
{
"name": "filecrypt",
"version": "v0.4.8-alpha",
"description": "Encrypt files using RSA Encryption",
"main": "main.js",
"scripts": {
"update": "npm update",
"start": "node main.js",
"clean": "rm -rf ./.rsakeys *.enc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Etosticity/node-filecrypt.git"
},
"keywords": [
"encryption",
"rsa",
"nodejs",
"node-rsa"
],
"author": "Etosticity Rammington (etosticity@gmail.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Etosticity/node-filecrypt/issues"
},
"homepage": "https://github.com/Etosticity/node-filecrypt#readme",
"dependencies": {
"chalk": "^2.4.1",
"inquirer": "^6.2.0",
"node-rsa": "^1.0.1"
},
"devDependencies": {}
}