UNPKG

1.94 kBJSONView Raw
1{
2 "name": "@commitlint/rules",
3 "version": "6.0.3",
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 --skip-import",
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/parse": "^6.0.3",
63 "@commitlint/test": "^6.0.3",
64 "@commitlint/utils": "^6.0.3",
65 "ava": "0.22.0",
66 "babel-cli": "6.26.0",
67 "babel-preset-commitlint": "^6.0.3",
68 "babel-register": "6.26.0",
69 "concurrently": "3.5.1",
70 "conventional-changelog-angular": "1.6.0",
71 "cross-env": "5.1.1",
72 "globby": "6.1.0",
73 "lodash.values": "4.3.0",
74 "rimraf": "2.6.1",
75 "xo": "0.18.2"
76 },
77 "dependencies": {
78 "@commitlint/ensure": "^6.0.3",
79 "@commitlint/message": "^6.0.3",
80 "@commitlint/to-lines": "^6.0.3",
81 "babel-runtime": "^6.23.0"
82 }
83}