-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "aoc-loader",
"version": "1.4.4",
"description": "Loads input data from Advent of Code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"lint": "prettier -c . && eslint .",
"test": "jest"
},
"author": "Johan Lindell",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lindell/aoc-loader.git"
},
"homepage": "https://github.com/lindell/aoc-loader#readme",
"bugs": {
"url": "https://github.com/lindell/aoc-loader/issues"
},
"dependencies": {
"got": "^11.8.0"
},
"devDependencies": {
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.7.0",
"jest": "27.5.1",
"prettier": "2.5.0",
"ts-jest": "27.1.4",
"typescript": "4.5.2"
},
"keywords": [
"advent of code",
"advent-of-code",
"aoc",
"puzzle"
]
}