-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 895 Bytes
/
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
{
"name": "advent_of_code_2021",
"version": "1.0.0",
"description": "Source code for answers to puzzles that were a part of [Advent of Code 2021](https://adventofcode.com/2021/)",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"compile": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node_modules/.bin/mocha -r ts-node/register 'src/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsacharski/AdventOfCode2021.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bsacharski/AdventOfCode2021/issues"
},
"homepage": "https://github.com/bsacharski/AdventOfCode2021#readme"
}