-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 773 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 773 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
{
"name": "advent2019",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"03-1": "cd 03 && node ./first2.js",
"03-2": "cd 03 && node ./secondEntryPoint.js",
"04-1": "cd 04 && node ./firstEntryPoint.js",
"04-2": "cd 04 && node ./secondEntryPoint.js",
"05-1": "cd 05 && node ./firstEntryPoint.js",
"05-2": "cd 05 && node ./secondEntryPoint.js",
"06-1": "cd 06 && node ./firstEntryPoint.js",
"06-2": "cd 06 && node ./secondEntryPoint.js",
"test03": "jest ./03/**/*.spec.js",
"test04": "jest ./04/*.spec.js",
"test05": "jest ./05/*.spec.js"
},
"author": "Elia Mazzuoli",
"license": "ISC",
"dependencies": {
"jest": "^24.9.0",
"lodash": "^4.17.19",
"node-dijkstra": "^2.5.0"
}
}