-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
50
{
"name": "adventjs-solutions",
"version": "1.0.0",
"description": "Solutions for AdventJS 2022",
"main": "index.js",
"scripts": {
"test": "jest",
"test:2021": "jest --testPathPattern=2021",
"test:2022": "jest --testPathPattern=2022",
"test:2023": "jest --testPathPattern=2023",
"test:2024": "jest --testPathPattern=2024",
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix",
"prepare": "husky install",
"postinstall": "npm run prepare"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"keywords": [
"midudev",
"javascript",
"adventjs",
"adventjs-2022",
"adventjs-2022-solutions",
"adventjs-2022-solutions-javascript",
"adventjs-2023",
"adventjs-2023-solutions",
"adventjs-2023-solutions-javascript"
],
"author": "marcode24",
"license": "MIT",
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcode24/adventjs-solutions"
},
"bugs": {
"url": "git+https://github.com/marcode24/adventjs-solutions/issues"
},
"homepage": "https://github.com/marcode24/adventjs-solutions#README.md"
}