-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "letssl",
"version": "0.0.2",
"description": "Simple way to use SSL using HTTP ACME challenge",
"main": "src/index.js",
"scripts": {
"lint": "eslint 'src/**/*.js' 'e2e/**/*.js'",
"test": "humile src",
"test:e2e": "humile e2e/specs",
"test:full": "npm run test && npm run lint && tsc --noEmit --skipLibCheck && npm run test:e2e",
"postversion": "git push && git push --tags",
"prepack": "npm run test:full",
"preversion": "npm run test:full"
},
"repository": "megahertz/letssl",
"files": [
"src/*",
"!__specs__"
],
"keywords": [
"ssl",
"https",
"Let's Encrypt",
"acme",
"certificate"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/letssl/issues",
"homepage": "https://github.com/megahertz/letssl#readme",
"engines": {
"node": ">=12.0"
},
"typings": "src/index.d.ts",
"dependencies": {
"acme-client": "^4.1.2",
"node-forge": "^0.10.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"humile": "^0.2.20",
"typescript": "^4.1.3"
}
}