-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.28 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "no-masters",
"version": "1.4.0",
"description": "Rename your \"master\" branch to \"main\" and update on github",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"start": "tsc-watch",
"release": "semantic-release",
"test": "echo \"No tests\""
},
"bin": {
"no-masters": "./lib/bin.js"
},
"files": [
"git-template",
"lib"
],
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/good-idea/no-masters.git"
},
"keywords": [
"BLM"
],
"author": "Joseph Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/good-idea/no-masters/issues"
},
"homepage": "https://github.com/good-idea/no-masters#readme",
"dependencies": {
"command-exists": "^1.2.9",
"debug": "^4.1.1",
"execa": "^4.0.2",
"inquirer": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/prompt": "^9.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/command-exists": "^1.2.0",
"@types/debug": "^4.1.5",
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/prettier": "^2.0.1",
"@types/semantic-release": "^17.0.1",
"@types/standard-version": "^7.0.0",
"@types/tsc-watch": "^4.2.0",
"codecov": "^3.7.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"markdown-toc": "^1.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.1.1",
"standard-version": "^8.0.0",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.5",
"typesync": "^0.7.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}