-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
61
{
"name": "simple-free-encryption-tool",
"version": "2.0.14",
"description": "Simple Free RSA / AES Encryption and Decryption",
"main": "index.js",
"scripts": {
"build": "npm run test && browserify src/windowSfet.js -o dist/js/windowSfet.js && echo 'Build complete.'",
"test": "nyc --reporter=html --reporter=text --reporter=json-summary mocha && coverage-badge-creator",
"package-upgrade": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therightstuff/simple-free-encryption-tool.git"
},
"keywords": [
"security",
"encrypt",
"encryption",
"decrypt",
"decryption",
"signing",
"signature",
"verify",
"verification",
"rsa",
"aes",
"base64",
"node",
"browser",
"html5",
"javascript",
"js",
"csharp",
"c#",
".net",
"dotnet",
"free",
"simple"
],
"author": "therightstuff",
"license": "MIT",
"bugs": {
"url": "https://github.com/therightstuff/simple-free-encryption-tool/issues"
},
"homepage": "https://github.com/therightstuff/simple-free-encryption-tool#readme",
"dependencies": {
"node-rsa": "^1.1.1",
"randomstring": "^1.3.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"coverage-badge-creator": "^1.0.19",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"files": [
"/src",
"index.js"
]
}