-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "@timkurvers/advent-of-code",
"author": "Tim Kurvers <[email protected]>",
"repository": "github:timkurvers/advent-of-code",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"bootstrap": "node --experimental-specifier-resolution=node src/bootstrap.js",
"lint": "eslint . --ext js,mjs",
"progress": "node --experimental-specifier-resolution=node src/progress.js",
"start": "node --experimental-specifier-resolution=node src/runner.js",
"start:dev": "nodemon --ext js,yaml,txt --watch . --watch ../puzzles --exec npm run start",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"colors": "^1.3.2",
"fs-extra": "^9.0.0",
"globby": "^10.0.1",
"minimist": "^1.2.6",
"table": "^5.4.6",
"yaml": "^2.2.2"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@timkurvers/eslint-config": "^3.0.0",
"babel-jest": "^25.3.0",
"eslint": "^8.28.0",
"jest": "^26.6.0",
"jest-config": "^26.6.0",
"nodemon": "^2.0.20"
}
}