-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 991 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
41
42
{
"name": "resolve-composer-conflict",
"version": "0.3.11",
"description": "Utility to automatically resolve composer.lock git conflicts",
"license": "MIT",
"author": "Nick Amoscato <[email protected]>",
"bin": {
"resolve-composer-conflict": "bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/namoscato/resolve-composer-conflict"
},
"scripts": {
"prepare": "gulp all",
"start": "gulp",
"test": "gulp jsLint"
},
"dependencies": {
"colors": "^1.1.2",
"readline-sync": "^1.4.7"
},
"devDependencies": {
"@types/node": "^14.14.43",
"@types/readline-sync": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-typescript": "^5.0.1",
"typescript": "^4.0.2"
},
"keywords": [
"composer",
"lock",
"git",
"conflict",
"merge",
"resolve"
]
}