UNPKG

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