-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@betaquick/https-cert-watcher",
"version": "2.0.0",
"description": "Create an https server that watches folders for change and reloads context",
"main": "src/index.js",
"scripts": {
"prepublishOnly": "npm test",
"lint": "eslint test src",
"lint:fix": "npm run lint -- --fix",
"test": "./node_modules/mocha/bin/mocha --exit --timeout 10000"
},
"keywords": [
"https",
"tls"
],
"author": "Idiakose O. Sunday",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"sinon": "^10.0.0"
},
"engines": {
"node": ">=11.0.0"
},
"mocha": {
"recursive": true,
"reporter": "spec",
"ui": "bdd"
},
"dependencies": {
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaquick/https-cert-watcher.git"
},
"bugs": {
"url": "https://github.com/betaquick/https-cert-watcher/issues"
},
"homepage": "https://github.com/betaquick/https-cert-watcher#readme"
}