-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "program to highlight differences between two structures",
"main": "src/gendiff_core.js",
"type": "module",
"bin": {
"gendiff": "bin/gendiff.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Felarn/frontend-project-46.git"
},
"author": "Felarn",
"license": "ISC",
"bugs": {
"url": "https://github.com/Felarn/frontend-project-46/issues"
},
"homepage": "https://github.com/Felarn/frontend-project-46#readme",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "2.8.4"
},
"dependencies": {
"commander": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/test_funct/"
]
}
}