-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 961 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
30
31
32
33
34
35
36
37
{
"name": "aoc",
"version": "1.0.0",
"description": "My repo for the AoC (Advent of Code) solutions",
"keywords": [
"aoc"
],
"author": "Gustaf Järgren",
"license": "MIT",
"main": "src/index.ts",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"test": "jest --coverage --verbose",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -c tslint.json -p tsconfig.json",
"solve": "node dist",
"solve-ts": "ts-node src"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@types/pretty-time": "^1.1.0",
"@types/yargs": "^15.0.11",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-time": "^1.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2",
"yargs": "^16.2.0"
}
}