forked from rcoscali/node-acme
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "node-letsencrypt",
"version": "0.0.6",
"main": "./lib/acme.js",
"dependencies": {
"async": "^1.3.0",
"node-forge": "^0.6.34"
},
"optionalDependencies": {
"ursa": "^0.8.5"
},
"devDependencies": {
"jshint": "2.5.X",
"mocha": "1.18.X",
"chai": "1.9.X",
"supertest": "0.12.X"
},
"description": "Automated Certificate Management Environment (ACME)",
"keywords": [
"certificate",
"PKI",
"X.509",
"HTTPS"
],
"author": "Richard Barnes (author upstream version, see README.md) <[email protected]>",
"contributors": [
"Michiel de Jong (some bugfixes, see README.md) <[email protected]>"
],
"license": "BSD-3-Clause",
"scripts": {
"test": "npm run test-mocha && npm run test-jshint",
"test-mocha": "mocha",
"test-jshint": "jshint ./*.js ./lib/*.js --config ./test/.jshintrc",
"start": "node server.js"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/michielbdejong/node-letsencrypt"
},
"bugs": {
"url": "https://github.com/michielbdejong/node-letsencrypt/issues"
},
"homepage": "https://github.com/michielbdejong/node-letsencrypt"
}