-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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": "reshala",
"version": "4.0.5",
"description": "A simple CLI tool to resolve package.json merge conflicts.",
"main": "index.js",
"type": "module",
"bin": {
"reshala": "./bin/reshala.js"
},
"scripts": {
"prepare": "husky install",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "prettier --write src/",
"pre-commit": "npm run format && git add .",
"pre-push": "npm test"
},
"author": {
"name": "Vladislav Ivanov",
"email": "[email protected]",
"url": "https://yungvldai.ru"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:yungvldai/reshala.git"
},
"dependencies": {
"chalk": "4.1.0",
"commander": "8.3.0",
"inquirer": "8.2.0",
"update-check": "1.5.4"
},
"engines": {
"node": ">= 13"
},
"devDependencies": {
"husky": "7.0.4",
"jest": "27.4.5",
"prettier": "2.5.1"
},
"keywords": [
"reshala",
"git",
"package",
"merge",
"conflict",
"resolve",
"lerna"
]
}