-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 752 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 752 Bytes
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
{
"name": "advent-of-code-21",
"version": "3.1.7",
"description": "My AdventOfCode.com 2021 personal progress",
"main": "run",
"homepage": "https://github.com/valango/AdventOfCode_2021",
"repository": "git://github.com/valango/AdventOfCode_2021.git",
"author": "Villem Alango <villem.alango@gmail.com>",
"license": "MIT",
"keywords": [],
"scripts": {
"lint": "eslint ./d*.js ./core/*.js",
"purge": "rimraf node_modules reports",
"test": "jest --config test/jest.config.js"
},
"engines": {
"node": ">=10.15.1"
},
"private": false,
"devDependencies": {
"eslint": "^8.3.0",
"jest": "^27.4.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"assert-fine": "^2.0.0",
"lodash": "^4.17.21"
}
}