-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.13 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
47
48
49
50
{
"name": "diff-generator",
"version": "1.1.4",
"description": "Compares two configuration files and shows a difference.",
"main": "./index.js",
"type": "module",
"scripts": {
"test": "npx -n --experimental-vm-modules jest"
},
"bin": {
"gendiff": "./bin/gendiff.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shramkoweb/frontend-project-lvl2.git"
},
"keywords": [
"gendiff",
"difference",
"hexlet",
"json",
"yaml",
"ini",
"config",
"js",
"cli",
"args",
"argv"
],
"author": "Serhii Shramko <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shramkoweb/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Shramkoweb/frontend-project-lvl2#readme",
"dependencies": {
"commander": "^5.1.0",
"ini": "^1.3.8",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.6.3",
"jest-cli": "^26.6.3"
}
}