forked from conventional-changelog/commitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 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
{
"name": "@commitlint/cli",
"version": "5.2.5",
"description": "Lint your commit messages",
"bin": {
"commitlint": "./lib/cli.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"clean": "npx rimraf lib",
"deps": "dep-check",
"lint": "xo",
"start": "concurrently \"ava -c 4 --verbose --watch\" \"yarn run watch\"",
"test": "ava -c 4 --verbose",
"watch": "babel src --out-dir lib --watch --source-maps"
},
"ava": {
"files": [
"lib/**/*.test.js"
],
"source": [
"lib/**/*.js"
]
},
"babel": {
"presets": [
"babel-preset-commitlint"
]
},
"xo": false,
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/marionebl/commitlint.git"
},
"bugs": {
"url": "https://github.com/marionebl/commitlint/issues"
},
"homepage": "https://github.com/marionebl/commitlint#readme",
"keywords": [
"conventional-changelog",
"commitlint",
"cli"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/test": "^5.2.0",
"@commitlint/utils": "^5.1.1",
"ava": "0.18.2",
"babel-cli": "6.26.0",
"babel-preset-commitlint": "^5.2.0",
"babel-register": "6.26.0",
"concurrently": "3.5.1",
"cross-env": "5.1.1",
"dependency-check": "2.9.2",
"execa": "0.8.0",
"mkdirp": "0.5.1",
"resolve-bin": "0.4.0",
"rimraf": "2.6.2",
"sander": "0.6.0",
"string-to-stream": "1.1.0",
"tmp": "0.0.33",
"xo": "0.18.2"
},
"dependencies": {
"@commitlint/core": "^5.2.5",
"babel-polyfill": "6.26.0",
"chalk": "2.3.0",
"get-stdin": "5.0.1",
"lodash": "4.17.4",
"meow": "3.7.0"
}
}