-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 735 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 735 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
30
{
"name": "advent-of-code-15",
"version": "3.1.4",
"description": "AoC'15 afterwards",
"main": "run",
"homepage": "https://github.com/valango/AdventOfCode_2015",
"repository": "git://github.com/valango/AdventOfCode_2015.git",
"author": "Villem Alango <[email protected]>",
"license": "MIT",
"keywords": [],
"scripts": {
"lint": "eslint ./*.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",
"jest": "^27.4.3",
"rimraf": "^3.0.2"
}
}