-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 952 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": "zerossl-verify",
"version": "0.0.1",
"description": "ZeroSSL domain verification utility (for testing purposes only)",
"private": true,
"author": "Adam K Dean <adamkdean@googlemail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamkdean/zerossl-verify"
},
"main": "out/src/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/main.ts",
"dev:watch": "nodemon --watch src -e ts --exec 'npm run dev'",
"start": "node out/src/main.js"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.1",
"@types/express": "^4.17.13",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^14.1.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"express": "^4.17.2",
"zerossl": "^1.1.0"
}
}