-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 900 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": "1.0.0",
"description": "Difference Calculator",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lena05k/frontend-project-lvl2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lena05k/frontend-project-lvl2/issues"
},
"homepage": "https://github.com/Lena05k/frontend-project-lvl2#readme",
"bin": {
"gendiff": "bin/gendiff.js"
},
"dependencies": {
"commander": "^9.4.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"jest": "^29.3.1",
"jest-cli": "^29.3.1"
}
}