forked from conventional-changelog/commitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 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
80
81
{
"name": "@commitlint/prompt",
"version": "6.0.1",
"description": "commitizen prompt using commitlint.config.js",
"main": "./lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"clean": "npx rimraf lib",
"commit": "git-cz",
"deps": "dep-check",
"lint": "xo",
"start": "concurrently \"ava --watch --verbose\" \"yarn run watch\"",
"test": "ava --verbose",
"watch": "babel src --out-dir lib --watch --source-maps"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
],
"files": [
"src/**/*.test.js"
],
"sources": [
"src/**/*.js"
]
},
"babel": {
"presets": [
"commitlint"
]
},
"config": {
"commitizen": {
"path": "./@commitlint/prompt"
}
},
"xo": false,
"repository": {
"type": "git",
"url": "git+https://github.com/marionebl/commitlint.git"
},
"keywords": [
"conventional-changelog",
"commitlint",
"prompt",
"cz",
"commitizen"
],
"author": "Mario Nebl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marionebl/commitlint/issues"
},
"homepage": "https://github.com/marionebl/commitlint#readme",
"devDependencies": {
"@commitlint/utils": "^5.1.1",
"ava": "0.20.0",
"babel-cli": "6.26.0",
"babel-preset-commitlint": "^5.2.0",
"babel-register": "6.26.0",
"commitizen": "2.9.6",
"concurrently": "3.5.1",
"cross-env": "5.1.1",
"throat": "4.1.0",
"xo": "0.18.2"
},
"dependencies": {
"@commitlint/core": "^6.0.1",
"babel-runtime": "^6.23.0",
"chalk": "^2.0.0",
"lodash.camelcase": "4.3.0",
"lodash.kebabcase": "4.1.1",
"lodash.snakecase": "4.1.1",
"lodash.startcase": "4.4.0",
"lodash.topairs": "4.3.0",
"lodash.upperfirst": "4.3.1",
"throat": "^4.1.0",
"vorpal": "^1.10.0"
}
}