-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.79 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
{
"name": "brand",
"version": "1.1.0",
"description": "The missing CLI for Firebase apps.",
"main": "brand.js",
"keywords": [
"firebase",
"apps",
"mobile",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/phoqe/brand.git"
},
"author": {
"name": "Linus Långberg",
"email": "[email protected]",
"url": "https://phoqe.dev"
},
"bin": {
"brand": "./brand.js"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/phoqe/brand/issues"
},
"scripts": {
"format": "prettier --write --ignore-unknown ."
},
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"dotenv": "^8.2.0",
"faker": "^5.5.2",
"firebase-admin": "^9.6.0",
"i18n": "^0.13.2",
"inquirer": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/git": "^9.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"semantic-release": "^17.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false
}
]
]
}
}