-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "Utility for comparing two configuration files and showing a difference.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npx jest",
"test:watch": "npx jest --watch"
},
"bin": {
"gendiff": "./bin/gendiff.js"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"modulePathIgnorePatterns": [
"__fixtures__"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ivankalachikov/frontend-project-lvl2.git"
},
"author": "Ivan Kalachikov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ivankalachikov/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Ivankalachikov/frontend-project-lvl2#readme",
"dependencies": {
"commander": "^6.2.1",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3"
}
}