forked from highwaycoder/node-ssl-root-cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1000 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
39
40
41
{
"name": "ssl-root-cas",
"version": "1.2.3",
"description": "The module you need to solve node's SSL woes when including a custom certificate.",
"license": "Apache-2.0",
"homepage": "https://github.com/coolaj86/node-ssl-root-cas",
"bugs": {
"url": "https://github.com/coolaj86/node-ssl-root-cas/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/coolaj86/node-ssl-root-cas.git"
},
"keywords": [
"SSL",
"UNABLE_TO_VERIFY_LEAF_SIGNATURE",
"CERT_UNTRUSTED",
"CAS",
"CA",
"ROOT",
"intermediate",
"leaf",
"error"
],
"main": "index.js",
"scripts": {
"test": "node test.js",
"clean": "rimraf stores",
"build": "ca-store generate stores/ssl-root-cas.js",
"prepublish": "npm test && npm run clean && npm run build"
},
"dependencies": {
"invigilate": "^2.1.0",
"ca-store": "^1.0.0"
},
"devDependencies": {
"bluebird": "^3.4.7",
"request": "^2.79.0",
"rimraf": "^2.5.4"
}
}