-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1005 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
40
{
"name": "@hexlet/code",
"version": "1.0.0",
"type": "module",
"description": "Command line utility for calculation differences between two data structures.",
"main": "src/index.js",
"jest": {
"testEnvironment": "node",
"transform": {}
},
"scripts": {
"test": "make test"
},
"bin": {
"gendiff": "bin/gendiff.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kassy-8/frontend-project-lvl2.git"
},
"author": "Kokova Ekaterina",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kassy-8/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Kassy-8/frontend-project-lvl2#readme",
"dependencies": {
"commander": "^7.1.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3"
}
}