-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "jasypt",
"version": "1.0.7",
"description": "org.jasypt.util.text.BasicTextEncryptor for Node.js",
"main": "index.js",
"bin": {
"jasypt": "./bin/jasypt.js"
},
"files": [
"bin/",
"encryptor.js",
"index.js",
"jasypt.js",
"util.js",
"cache.js"
],
"scripts": {
"test": "tap -j4 test/*",
"ci": "tap -j4 test/* --cov",
"cov": "tap -j4 test/* --cov --coverage-report=html",
"benchmark": "node ./benchmark/jasypt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rickyes/jasypt.git"
},
"keywords": [
"jasypt",
"pbewithmd5anddes",
"crypto",
"encrypt",
"decrypt",
"BasicTextEncryptor"
],
"author": "Ricky泽阳 <[email protected]>",
"bugs": {
"url": "https://github.com/rickyes/jasypt/issues"
},
"homepage": "https://github.com/rickyes/jasypt#readme",
"license": "MIT",
"devDependencies": {
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"codecov": "^3.6.5",
"nyc": "^14.1.1",
"tap": "^14.10.5"
},
"dependencies": {
"commander": "^2.20.0",
"lru-cache": "^6.0.0"
}
}