-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "@therealklanni/mrm",
"version": "0.1.0",
"description": "Mrm tasks",
"main": "config.json",
"files": [
"config.json",
"*/index.js"
],
"keywords": [
"mrm",
"mrm-task",
"mrm-preset"
],
"repository": "https://github.com/therealklanni/mrm",
"author": "Kevin Lanni <therealklanni@gmail.com> (https://github.com/therealklanni)",
"license": "MIT",
"dependencies": {
"mrm-core": "^4.0.3",
"mrm-task-commitlint": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@therealklanni/commitlint-config": "latest",
"husky": "latest",
"standard-version": "latest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}