-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "advent-of-code-runner",
"version": "1.9.0",
"description": "CLI for running and submitting Advent of Code Puzzles",
"keywords": [
"adventofcode",
"advent of code",
"aoc",
"cli",
"advent of code cli"
],
"type": "module",
"files": [
"src/",
"templates"
],
"main": "src/main.js",
"bin": "src/main.js",
"scripts": {
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"start": "node bin/start.js",
"lint": "eslint 'src/**/*.js' 'tests/**/*.js'",
"prettier": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/beakerandjake/advent-of-code-runner.git"
},
"author": "beakerandjake <beakerandjake@users.noreply.github.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/beakerandjake/advent-of-code-runner/issues"
},
"homepage": "https://github.com/beakerandjake/advent-of-code-runner",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"chalk": "^5.2.0",
"commander": "^11.1.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"ora": "^6.1.2",
"table": "^6.8.1",
"terminal-link": "^3.0.0",
"triple-beam": "^1.3.0",
"winston": "^3.8.2",
"winston-transport": "^4.5.0",
"yn": "^5.0.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.4",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "2.8.3"
},
"engines": {
"node": ">=18"
}
}