-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathpackage.json
76 lines (76 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
{
"name": "@commitlint/prompt",
"version": "5.0.1",
"description": "commitizen prompt using commitlint.config.js",
"main": "./lib/index.js",
"scripts": {
"build": "npx cross-env NODE_ENV=production npx -p babel-cli babel src --out-dir lib --source-maps",
"clean": "npx rimraf lib",
"commit": "npx git-cz",
"deps": "dep-check",
"lint": "npx xo",
"start": "npx concurrently \"npx ava --watch --verbose\" \"npx yarn run watch\"",
"test": "npx ava --verbose",
"watch": "npx -p babel-cli 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.0.1",
"ava": "0.20.0",
"babel-cli": "6.26.0",
"babel-preset-commitlint": "^5.0.1",
"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": "^5.0.1",
"babel-runtime": "^6.23.0",
"chalk": "^2.0.0",
"lodash": "^4.17.4",
"throat": "^4.1.0",
"vorpal": "^1.10.0"
}
}