-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 910 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
34
35
36
{
"name": "advent-of-code-2020",
"version": "1.0.0",
"description": "A series of programming chalanges using javascript",
"main": "day-1.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cst2989/advent-of-code-2020.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cst2989/advent-of-code-2020/issues"
},
"homepage": "https://github.com/Cst2989/advent-of-code-2020#readme",
"dependencies": {
"fs": "^0.0.1-security",
"line-reader": "^0.4.0",
"os": "^0.1.2",
"path": "^0.12.7",
"perf_hooks": "^0.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}