-
Notifications
You must be signed in to change notification settings - Fork 933
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "@commitlint/format",
"version": "8.0.0",
"description": "Format commitlint reports",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"deps": "dep-check",
"pkg": "pkg-check --skip-import",
"start": "concurrently \"yarn test --watchAll\" \"yarn run watch\"",
"test": "jest",
"watch": "tsc -w"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/commitlint.git"
},
"bugs": {
"url": "https://github.com/conventional-changelog/commitlint/issues"
},
"homepage": "https://github.com/conventional-changelog/commitlint#readme",
"keywords": [
"conventional-changelog",
"commitlint",
"library",
"core"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/test": "^8.0.0",
"@types/jest": "24.0.13",
"@types/lodash": "4.14.133",
"concurrently": "3.5.1",
"jest": "24.8.0",
"ts-jest": "24.0.2",
"typescript": "3.5.1",
"lodash": "4.17.11"
},
"dependencies": {
"chalk": "^2.0.1"
}
}