-
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": "change-git-config",
"version": "1.0.4",
"description": "Rewrite your git config in existing repositories' history",
"keywords": [
"git",
"profile",
"config",
"name",
"email",
"repository",
"remote",
"history",
"author",
"committer"
],
"main": "index.js",
"repository": "JaneJeon/Change-Git-Config",
"author": "Jane Jeon <JaneJeon9719@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^8.1.0",
"enquirer": "^2.0.7",
"simple-git": "^1.107.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@janejeon/prettier-config": "^1.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"prettier": "@janejeon/prettier-config",
"scripts": {
"start": "DEBUG=git-config:repo:* node index.js",
"setup": "bash scripts/setup.sh",
"teardown": "bash scripts/teardown.sh",
"lint": "prettier --check ."
}
}