-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1016 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
{
"name": "advent-of-code-2021",
"version": "1.0.0",
"description": "Collection of challenge solutions from https://adventofcode.com/2021",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node day-%npm_config_day%/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint **/*.{jsx,js}",
"lint:fix": "eslint **/*.{jsx,js} --fix && prettier --write **/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aileen-r/advent-of-code-2021.git"
},
"author": "Aileen Rae",
"license": "ISC",
"bugs": {
"url": "https://github.com/aileen-r/advent-of-code-2021/issues"
},
"homepage": "https://github.com/aileen-r/advent-of-code-2021#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.3",
"prettier": "^2.5.1"
}
}