-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "@ngx-devs/commitlint-plugin-imperative",
"version": "1.1.4",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "commitlint plugin to ensure that commits are made using imperative mood",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/!(*.test).{js,d.ts}"
],
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"coverage": "c8 ava",
"changelog": "gitmoji-changelog",
"check-coverage": "c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 ava",
"prepare": "husky install"
},
"keywords": [
"commitlint",
"commitlintplugin",
"plugin",
"rules",
"imperative"
],
"author": "Gleison de Almeida",
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@commitlint/cli": "^16.2.3",
"@commitlint/lint": "^16.2.1",
"@commitlint/load": "^16.2.3",
"@commitlint/types": "^16.2.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.0.3",
"ava": "^4.2.0",
"c8": "^7.11.2",
"commitlint-config-gitmoji": "^2.2.5",
"gitmoji-changelog": "^2.3.0",
"husky": "^7.0.0",
"semantic-release": "^19.0.2",
"semantic-release-gitmoji": "^1.4.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@commitlint/lint": ">=7.6.0"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"c8": {
"reporter": [
"cobertura",
"lcovonly",
"text"
],
"include": [
"dist/**/*.js"
]
}
}