UNPKG

1.63 kBJSONView Raw
1{
2 "name": "@commitlint/message",
3 "version": "7.1.1",
4 "description": "Lint your commit messages",
5 "main": "lib/index.js",
6 "files": [
7 "lib/"
8 ],
9 "scripts": {
10 "build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
11 "clean": "npx rimraf lib",
12 "deps": "dep-check",
13 "pkg": "pkg-check",
14 "lint": "xo",
15 "start": "concurrently \"ava -c 4 --verbose --watch\" \"yarn run watch\"",
16 "test": "ava -c 4 --verbose",
17 "watch": "babel src --out-dir lib --watch --source-maps"
18 },
19 "ava": {
20 "files": [
21 "src/**/*.test.js",
22 "!lib/**/*"
23 ],
24 "source": [
25 "src/**/*.js",
26 "!lib/**/*"
27 ],
28 "babel": "inherit",
29 "require": [
30 "babel-register"
31 ]
32 },
33 "babel": {
34 "presets": [
35 "babel-preset-commitlint"
36 ]
37 },
38 "xo": false,
39 "engines": {
40 "node": ">=4"
41 },
42 "repository": {
43 "type": "git",
44 "url": "https://github.com/marionebl/commitlint.git"
45 },
46 "bugs": {
47 "url": "https://github.com/marionebl/commitlint/issues"
48 },
49 "homepage": "https://github.com/marionebl/commitlint#readme",
50 "keywords": [
51 "conventional-changelog",
52 "commitlint",
53 "library",
54 "core"
55 ],
56 "author": {
57 "name": "Mario Nebl",
58 "email": "hello@herebecode.com"
59 },
60 "license": "MIT",
61 "devDependencies": {
62 "@commitlint/test": "^7.1.1",
63 "@commitlint/utils": "^7.1.1",
64 "ava": "0.22.0",
65 "babel-cli": "6.26.0",
66 "babel-preset-commitlint": "^7.1.1",
67 "babel-register": "6.26.0",
68 "concurrently": "3.5.1",
69 "cross-env": "5.1.1",
70 "rimraf": "2.6.1",
71 "xo": "0.20.3"
72 }
73}