forked from johncrisostomo/get-ssl-certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 954 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
{
"name": "get-ssl-certificate",
"version": "1.0.0",
"description": "A micro-library that returns a website's SSL certificate",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"coverage": "node node_modules/.bin/istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johncrisostomo/get-ssl-certificate.git"
},
"keywords": [
"ssl",
"certificate",
"https",
"socket"
],
"author": "John Crisostomo",
"license": "MIT",
"bugs": {
"url": "https://github.com/johncrisostomo/get-ssl-certificate/issues"
},
"homepage": "https://github.com/johncrisostomo/get-ssl-certificate#readme",
"devDependencies": {
"chai": "~1.8.1",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "~1.16.2",
"sinon": "^1.17.6"
}
}