-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "aoc",
"version": "2020.12.08.1",
"description": "My Advent of Code solutions in JS",
"scripts": {
"all": "node ./bin/all.js",
"year": "node ./bin/year.js",
"day": "node ./bin/day.js",
"part": "node ./bin/part.js",
"start-day": "node ./bin/start-day.js",
"download-test-input": "node ./bin/download-test-input.js",
"disassemble-intcode": "node ./bin/disassemble-intcode.js",
"test": "jest",
"watch": "jest --watch",
"lint": "eslint bin/**/*.js intcode/**/*.js lib/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvaro-cuesta/aoc-js.git"
},
"keywords": [
"advent",
"code"
],
"author": "Alvaro Cuesta <alvaro-cuesta@GitHub>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alvaro-cuesta/aoc-js/issues"
},
"homepage": "https://github.com/alvaro-cuesta/aoc-js#readme",
"dependencies": {
"@datastructures-js/queue": "^4.2.3",
"big-integer": "^1.6.51",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"iter-tools": "=7.0.0-rc.0",
"jest": "^29.3.1",
"ramda": "^0.28.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"eslint-plugin-jest": "^27.1.6"
}
}