-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 994 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
37
38
39
40
41
42
43
44
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "Advent of code - javascript",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "node --test --watch src/2023/*/*.test.js",
"test-once": "jest"
},
"author": "Akallabet",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-jest": "^24.9.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^24.9.0",
"path": "^0.12.7",
"prettier": "^2.5.0",
"standard": "^14.3.1"
},
"jest": {
"testMatch": [
"**/src/**/*.test.js"
]
},
"keywords": [
"advent of code",
"advent of code 2017",
"advent of code 2018",
"javascript",
"es6"
],
"dependencies": {
"ramda": "^0.27.1"
}
}