-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1002 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
35
{
"name": "log-ng",
"version": "1.0.0",
"description": "Simple server and client loggers",
"main": "index.js",
"browser": {
"index.js": "blogger.js"
},
"scripts": {
"createCert": "openssl req -new -x509 -newkey rsa:4096 -keyout key.pem -nodes -out cert.pem <<END\nUS\nColorado\nBoulder\nStupid Genius Software\nlocalhost\n\n\nEND",
"karma": "karma start",
"start": "npx http-server -S -C cert.pem -K key.pem -p 9876 -c-1",
"test": "mocha",
"testServer": "node testServer.js"
},
"author": "Stupid Genius Software",
"license": "GPL-3.0",
"devDependencies": {
"chai": "4.3.10",
"cors": "^2.8.5",
"esbuild": "^0.19.11",
"express": "^4.18.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-esbuild": "^2.3.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
"sinon": "^17.0.1"
},
"dependencies": {
"winston": "^3.11.0"
}
}