-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 964 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
{
"name": "adventjs",
"version": "1.0.0",
"description": "My adventJS solutions",
"private": true,
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "29.0.2",
"eslint": "8.23.1",
"husky": "8.0.1",
"jest": "29.0.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"type": "module",
"homepage": "https://github.com/aanton/adventjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aanton/adventjs.git"
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md}": "prettier --check"
}
}