-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
48
49
50
51
{
"name": "advent-of-code",
"version": "2022.6.0",
"description": "My solutions for The Advent of Code",
"main": "2022/index.ts",
"private": true,
"scripts": {
"2015": "ts-node 2015/index.ts",
"2016": "ts-node 2016/index.ts",
"2017": "ts-node 2017/index.ts",
"2019": "ts-node 2019/index.ts",
"2020": "ts-node 2020/index.ts",
"2021": "ts-node 2021/index.ts",
"2022": "ts-node 2022/index.ts",
"test": "npm run test:2022",
"test:all": "jest",
"test:2015": "jest 2015/",
"test:2016": "jest 2016/",
"test:2017": "jest 2017/",
"test:2019": "jest 2019/",
"test:2020": "jest 2020/",
"test:2021": "jest 2021/",
"test:2022": "jest 2022/",
"prettier": "prettier -w **/*.ts"
},
"author": "Matthew Tole <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/matthewtole/advent-of-code.git"
},
"bugs": {
"url": "https://github.com/matthewtole/advent-of-code/issues"
},
"homepage": "https://github.com/matthewtole/advent-of-code#readme",
"dependencies": {
"chalk": "^4.1.2",
"ramda": "^0.28.0",
"spark-md5": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/ramda": "^0.28.20",
"@types/spark-md5": "^3.0.2",
"jest": "^29.3.1",
"prettier": "^2.5.0",
"ts-jest": "^29.0.3"
}
}