-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 948 Bytes
/
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
{
"name": "jks-js",
"version": "1.1.4",
"description": "jks-js is a converter of Java Key Store (JKS) to PEM certificates in order to securely connect to Java based servers using node js.",
"main": "lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha 'tests/**/*.spec.js'"
},
"keywords": [
"jks",
"java",
"keystore",
"truststore",
"nodejs",
"js",
"javascript"
],
"author": "Volodymyr Liench <lenchvov@gmail.com> (https://github.com/lenchv)",
"license": "MIT",
"dependencies": {
"node-forge": "^1.3.1",
"node-int64": "^0.4.0",
"node-rsa": "^1.1.1"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.7.3",
"nyc": "^15.1.0"
},
"bugs": {
"url": "https://github.com/lenchv/jks-js/issues"
},
"homepage": "https://github.com/lenchv/jks-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lenchv/jks-js.git"
}
}