forked from ocelotconsulting/node-acme-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "node-letsencrypt-lambda",
"version": "1.0.0",
"description": "Free Lets-Encrypt certificate management for CloudFront/AWS written in nodejs",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/ocelotconsulting/node-letsencrypt-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": "node -e \"function noop(){}\"",
"deploy": ". ./deploy.sh"
},
"keywords": [
"letsencrypt",
"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.2.7",
"superagent": "^3.5.0"
},
"devDependencies": {
"archiver": "^1.2.0",
"aws-sdk-cli": "^0.0.3",
"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"
},
"engines": {
"npm": "4.3.2"
}
}