This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
54 lines (54 loc) · 1.57 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
49
50
51
52
53
54
{
"name": "node-acme-lambda",
"version": "1.0.0",
"description": "Free ACME certificate management for CloudFront/AWS written in nodejs",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/ocelotconsulting/node-acme-lambda.git"
},
"scripts": {
"clean": "rm dist*.zip || true && rm -rf build",
"dist": "mkdir build && npm install && npm prune --production && mv node_modules ./build && npm install && node zip.js",
"pems": "node bin/write_pems.js",
"import": "node bin/importToACM.js",
"local-cert": "node bin/local.js",
"test": "mocha test/unit --recursive --require test/setup --colors --timeout 15000",
"test:coverage": "nyc --reporter=html --reporter=lcov --reporter=text mocha test/unit --recursive --require test/setup",
"deploy": ". ./deploy.sh"
},
"keywords": [
"letsencrypt",
"acme",
"nodejs",
"aws"
],
"author": "Larry Anderson",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.168.0",
"es6-promisify": "^4.1.0",
"node-forge": "^0.6.45",
"rsa-compat": "^1.3.2",
"superagent": "^3.5.0"
},
"devDependencies": {
"archiver": "^1.2.0",
"aws-sdk-cli": "^0.0.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^3.8.0",
"eslint-config": "^0.3.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"proxyquire": "^2.0.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
},
"engines": {
"npm": "4.3.2"
}
}