-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 760 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": "adventofcode-2020",
"version": "0.1.0",
"description": "repository of proposed solutions to Advent Of Code 2020 edition",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-ds/adventofcode-2020.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/david-ds/adventofcode-2020/issues"
},
"homepage": "https://github.com/david-ds/adventofcode-2020#readme",
"dependencies": {
"lodash": ">=4.17.13",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^14.14.14"
}
}