AdventOfCode2020/package.json

21 lines
357 B
JSON
Raw Permalink Normal View History

2020-12-01 15:41:34 +00:00
{
"dependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"mocha": "^8.2.1",
"typescript": "^4.1.2"
},
"type": "module",
"scripts": {
2020-12-02 01:14:49 +00:00
"test": "mocha",
2020-12-01 15:41:34 +00:00
"pretest": "tsc"
2020-12-02 02:34:30 +00:00
},
"mocha": {
"enable-source-maps": true
2020-12-06 01:50:35 +00:00
},
"scripts": {
2020-12-06 04:57:45 +00:00
"test": "mocha dist/2020-day-06.js",
2020-12-06 01:50:35 +00:00
"pretest": "tsc"
2020-12-01 15:41:34 +00:00
}
}