-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
45
46
47
{
"name": "aoc-2022",
"version": "1.0.0",
"description": "Solutions to Advent-of-Code 2022",
"type": "module",
"engines": {
"node": "^15.0.0 || >=16.0.0"
},
"bin": {
"aoc": "./cli.js"
},
"exports": "./cli.js",
"main": "cli.js",
"scripts": {
"test": "echo 'Howdy'",
"newDay": "cp -a templates",
"clean": "rm -f */answer-*.txt archive/*/*/answer-*.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrahkola/advent-of-code-2022.git"
},
"keywords": [
"aoc",
"advent-of-code"
],
"author": "[email protected]",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rrahkola/advent-of-code-2022/issues"
},
"homepage": "https://github.com/rrahkola/advent-of-code-2022#readme",
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.0",
"dev-null": "^0.1.1",
"es-main": "^1.2.0",
"lodash": "^4.17.21",
"meow": "^11.0.0",
"pino": "^8.7.0",
"pino-multi-stream": "^6.0.0"
},
"devDependencies": {
"ava": "^5.1.0",
"nodemon": "^3.0.1",
"sinon": "^15.0.0"
}
}