-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 840 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": "split-ca",
"version": "1.0.1",
"description": "Simple module to split a single certificate authority chain file (aka: bundle, ca-bundle, ca-chain, etc.) into an array, as expected by the node.js tls api.",
"main": "index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/bushong1/split-ca.git"
},
"keywords": [
"nodejs",
"ca",
"chain",
"ssl",
"tls",
"https",
"certificate",
"authority",
"bundle",
"ca-bundle",
"ca-chain",
"split",
"server"
],
"author": "Charles Bushong",
"license": "ISC",
"bugs": {
"url": "https://github.com/bushong1/split-ca/issues"
},
"homepage": "https://github.com/bushong1/split-ca",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0"
}
}