-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1019 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
36
37
38
39
40
41
{
"name": "graceful-blossom-animal",
"version": "2022.12.15",
"description": "Travis's Advent of Code 2022",
"author": "Travis Hardiman",
"homepage": "https://graceful-blossom-animal.glitch.me/",
"main": "server.js",
"scripts": {
"test": "node --check server.js && semistandard && eslint server.js public/*.js",
"start": "node server.js"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"dependencies": {
"connect-timeout": "^1.9.0",
"eslint": "^8.57.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"semistandard": "^17.0.0",
"standard-engine": "^15.1.0",
"jshint": "^2.13.6"
},
"repository": {
"url": "https://glitch.com/edit/#!/graceful-blossom-animal"
},
"license": "Hippocratic-3.0",
"keywords": [
"glitch",
"adventofcode",
"advent",
"advent-of-code",
"advent-of-code-2022"
],
"browserslist": [
"defaults",
"not IE 11",
"supports es6-module",
"maintained node versions"
]
}