-
Notifications
You must be signed in to change notification settings - Fork 935
/
Copy pathpackage.json
114 lines (114 loc) · 2.35 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@commitlint/prompt",
"version": "3.0.3",
"description": "commitizen prompt using commitlint.config.js",
"main": "./lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
"clean": "rimraf lib",
"commit": "git-cz",
"pretest": "dep-check",
"test": "ava",
"prepublish": "npm run build"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
],
"files": [
"src/**/*.test.js"
],
"sources": [
"src/**/*.js"
]
},
"babel": {
"env": {
"development": {
"sourceMaps": "inline",
"plugins": [
"add-module-exports",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"production": {
"ignore": [
"**/*.test.js"
]
}
},
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"stage-0"
],
"plugins": [
"add-module-exports",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"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": "^3.0.3",
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"commitizen": "^2.9.6",
"cross-env": "^5.0.1",
"throat": "^4.1.0"
},
"dependencies": {
"@commitlint/core": "^3.0.3",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.1",
"lodash": "^4.17.4",
"throat": "^4.1.0",
"vorpal": "^1.10.0"
}
}