-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@commitlint/core",
"version": "5.0.0",
"description": "Lint your commit messages",
"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",
"pretest": "dep-check",
"start": "npx concurrently \"npx ava -c 4 --verbose --watch\" \"npx yarn run watch\"",
"test": "npx ava -c 4 --verbose && npx ava \"src/*.serial-test.js\" --verbose",
"watch": "npx -p babel-cli babel src --out-dir lib --watch --source-maps"
},
"ava": {
"files": [
"src/**/*.test.js",
"!lib/**/*"
],
"source": [
"src/**/*.js",
"!lib/**/*"
],
"babel": "inherit",
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"babel-preset-commitlint"
]
},
"xo": false,
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false,
"include": [
"source/**/*.js"
]
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/marionebl/commitlint.git"
},
"bugs": {
"url": "https://github.com/marionebl/commitlint/issues"
},
"homepage": "https://github.com/marionebl/commitlint#readme",
"keywords": [
"conventional-changelog",
"commitlint",
"library",
"core"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/test": "^4.3.0",
"@commitlint/utils": "^4.2.1",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-preset-commitlint": "^4.2.1",
"babel-register": "^6.26.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.1",
"denodeify": "1.2.1",
"dependency-check": "2.7.0",
"execa": "0.6.3",
"globby": "6.1.0",
"import-from": "2.1.0",
"nyc": "10.3.2",
"path-exists": "3.0.0",
"resolve-from": "3.0.0",
"rimraf": "2.6.1",
"xo": "0.18.2"
},
"dependencies": {
"@marionebl/conventional-commits-parser": "^3.0.0",
"@marionebl/git-raw-commits": "^1.2.0",
"@marionebl/sander": "^0.6.0",
"babel-runtime": "^6.23.0",
"chalk": "^2.0.1",
"conventional-changelog-angular": "^1.3.3",
"cosmiconfig": "^3.0.1",
"find-up": "^2.1.0",
"lodash": "^4.17.4",
"path-exists": "^3.0.0",
"require-uncached": "^1.0.3",
"resolve-from": "^3.0.0",
"resolve-global": "^0.1.0",
"semver": "^5.3.0"
}
}