UNPKG

2.11 kBJSONView Raw
1{
2 "name": "@commitlint/cli",
3 "version": "7.2.1",
4 "description": "Lint your commit messages",
5 "files": [
6 "index.js",
7 "lib",
8 "!*.test.js*"
9 ],
10 "bin": {
11 "commitlint": "./lib/cli.js"
12 },
13 "scripts": {
14 "build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
15 "clean": "npx rimraf lib",
16 "deps": "dep-check",
17 "pkg": "pkg-check",
18 "lint": "xo",
19 "start": "concurrently \"ava -c 4 --verbose --watch\" \"yarn run watch\"",
20 "test": "ava -c 4 --verbose",
21 "watch": "babel src --out-dir lib --watch --source-maps"
22 },
23 "ava": {
24 "files": [
25 "lib/**/*.test.js"
26 ],
27 "source": [
28 "lib/**/*.js"
29 ]
30 },
31 "babel": {
32 "presets": [
33 "babel-preset-commitlint"
34 ]
35 },
36 "xo": false,
37 "engines": {
38 "node": ">=4"
39 },
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/marionebl/commitlint.git"
43 },
44 "bugs": {
45 "url": "https://github.com/marionebl/commitlint/issues"
46 },
47 "homepage": "https://github.com/marionebl/commitlint#readme",
48 "keywords": [
49 "conventional-changelog",
50 "commitlint",
51 "cli"
52 ],
53 "author": {
54 "name": "Mario Nebl",
55 "email": "hello@herebecode.com"
56 },
57 "license": "MIT",
58 "devDependencies": {
59 "@commitlint/test": "^7.1.2",
60 "@commitlint/utils": "^7.1.2",
61 "ava": "0.18.2",
62 "babel-cli": "6.26.0",
63 "babel-preset-commitlint": "^7.1.2",
64 "babel-register": "6.26.0",
65 "concurrently": "3.5.1",
66 "cross-env": "5.1.1",
67 "execa": "0.9.0",
68 "mkdirp": "0.5.1",
69 "pkg-dir": "2.0.0",
70 "resolve-bin": "0.4.0",
71 "rimraf": "2.6.2",
72 "sander": "0.6.0",
73 "string-to-stream": "1.1.0",
74 "tmp": "0.0.33",
75 "xo": "0.20.3"
76 },
77 "dependencies": {
78 "@commitlint/format": "^7.2.1",
79 "@commitlint/lint": "^7.2.1",
80 "@commitlint/load": "^7.2.1",
81 "@commitlint/read": "^7.1.2",
82 "babel-polyfill": "6.26.0",
83 "chalk": "2.3.1",
84 "get-stdin": "5.0.1",
85 "lodash.merge": "4.6.1",
86 "lodash.pick": "4.4.0",
87 "meow": "5.0.0",
88 "resolve-from": "^4.0.0",
89 "resolve-global": "^0.1.0"
90 }
91}