-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 915 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
{
"name": "@hexlet/code",
"version": "0.0.1",
"description": "«Difference calculator» is a program that determines the difference between two data structures.",
"main": "index.js",
"type": "module",
"bin": {
"gendiff": "bin/gendiff.js"
},
"dependencies": {
"commander": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.3"
},
"scripts": {
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zapupenec/genDiff.git"
},
"author": "zapupenec",
"license": "ISC",
"bugs": {
"url": "https://github.com/zapupenec/genDiff/issues"
},
"homepage": "https://github.com/zapupenec/genDiff#readme"
}