-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "advent-of-code",
"version": "1.0.0",
"private": true,
"description": "NodeJS Solutions for Advent Of Code",
"main": "startAll.js",
"type": "module",
"scripts": {
"start:2023": "node ./start_all.js 2023",
"start:2022": "node ./start_all.js 2022",
"start:2021": "node ./start_all.js 2021",
"start:2020": "node ./start_all.js 2020",
"start:2019": "node ./start_all.js 2019",
"start:all": "node ./start_all.js",
"start:today": "node ./start_all.js today",
"prepare-today": "node ./prepare_day.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/Advent-of-Code.git"
},
"author": "NullDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/NullDev/Advent-of-Code/issues"
},
"homepage": "https://github.com/NullDev/Advent-of-Code#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"eslint": "^9.12.0"
}
}