forked from rickyes/jasypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.35 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.35 KB
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
62
63
64
65
{
"name": "@alt-javascript/jasypt",
"version": "1.0.1",
"description": "Jasypt (Java) clone for Node.js",
"type": "module",
"main": "index.js",
"bin": {
"jasypt": "./bin/jasypt.js"
},
"files": [
"bin/",
"digester.js",
"encryptor.js",
"index.js",
"index.d.ts",
"jasypt.js",
"util.js"
],
"scripts": {
"test": "tap -j4 test/*",
"ci": "tap -j4 test/* --coverage",
"cov": "tap -j4 test/* --coverage-report=html",
"benchmark": "node ./benchmark/jasypt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alt-javascript/jasypt.git"
},
"keywords": [
"jasypt",
"pbewithmd5anddes",
"crypto",
"encrypt",
"decrypt",
"digest"
],
"author": "Craig Parravicini",
"contributors": [
"Ricky泽阳 <mail@zhoumq.cn>"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/alt-javascript/jasypt/issues"
},
"homepage": "https://github.com/alt-javascript/jasypt#readme",
"license": "MIT",
"devDependencies": {
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"tap": "^21.6.2"
},
"tap": {
"statements": 90,
"branches": 65,
"functions": 90,
"lines": 90
},
"dependencies": {
"commander": "^2.20.0",
"des.js": "^1.1.0"
}
}