-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "2021-advent-of-code",
"version": "0.2.0",
"description": "Advent of Code 2021",
"author": "Greg van Brug <[email protected]>",
"scripts": {
"prepare": "husky install",
"dev": "nodemon",
"lint": "eslint \"src/**/*.{js,ts}\" --quiet",
"prebuild": "npm run lint",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregvanbrug/2021-advent-of-code.git"
},
"engines": {
"node": ">=14.16.0"
},
"dependencies": {
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"kelonio": "^0.7.0",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"mocha-multi": "^1.1.5",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.4.0"
},
"lint-staged": {
"**/*.json": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"coverage",
"**/*.spec.ts"
],
"reporter": [
"text",
"html"
],
"all": true
}
}