-
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) · 802 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 802 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": "encryptos",
"version": "1.1.0",
"description": "Encrypt to and decrypt from a file stream. Compatible with Node.js apps.",
"main": "encryptos.js",
"files": [
"encryptos.js"
],
"scripts": {
"start": "node encryptos.js",
"test": "npx jest"
},
"keywords": [
"encrypt",
"encryption",
"decrypt",
"decryption",
"file",
"stream",
"node",
"javascript",
"crypto",
"security",
"encrypto"
],
"author": "Faisal N",
"license": "ISC",
"devDependencies": {
"jest": "^30.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/faisalnjs/encryptos.git"
},
"bugs": {
"url": "https://github.com/faisalnjs/encryptos/issues"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"homepage": "https://faisaln.com/packages/encryptos"
}