-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
{
"name": "codember-solutions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:coverage": "jest --coverage --verbose --watchAll=false",
"test:2023": "jest --testPathPattern=2023 --verbose",
"test:2022": "jest --testPathPattern=2022 --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "eslint . --watch",
"prepare": "husky install",
"postinstall": "npm run prepare"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2"
}
}