-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "commitlint-config-gitmoji",
"version": "2.3.1",
"description": "shareable commitlint config enforcing gitmoji commit message",
"keywords": [
"commitlint",
"gitmoji",
"emoji",
"commit",
"git"
],
"homepage": "https://github.com/arvinxx/gitmoji-commit-workflow/tree/master/packages/commitlint-config",
"repository": {
"type": "git",
"url": "https://github.com/arvinxx/gitmoji-commit-workflow.git"
},
"license": "MIT",
"author": "Arvin Xu <arvinx@foxmail.com>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "father build",
"clean": "rm -rf es lib dist build coverage .eslintcache",
"cov": "jest --coverage",
"doctor": "father doctor",
"prepublishOnly": "npm run doctor && npm run build",
"start": "father dev",
"test": "jest"
},
"dependencies": {
"@commitlint/types": "^17",
"@gitmoji/commit-types": "1.1.5",
"@gitmoji/parser-opts": "1.4.0",
"commitlint-plugin-gitmoji": "2.2.6"
},
"devDependencies": {
"@commitlint/lint": "^17"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}