-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1011 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
38
39
40
41
42
43
44
{
"name": "aoc2015",
"version": "0.0.1",
"description": "Advent of code 2015",
"main": "index.js",
"scripts": {
"prebuild": "npm run tslint",
"build": "tsc",
"pretest": "npm run tslint",
"test": "jest",
"test:watch": "jest --watch",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"author": "Jacob Lorenzen",
"license": "MIT",
"dependencies": {
"fs-readfile-promise": "^3.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/fs-readfile-promise": "^3.0.0",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.32",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}
}