-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathpackage.json
63 lines (63 loc) · 1.32 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
{
"name": "babel-preset-commitlint",
"version": "5.1.1",
"description": "Lint your commit messages",
"main": "index.js",
"scripts": {
"deps": "dep-check",
"lint": "xo",
"start": "ava --watch --verbose",
"test": "ava --verbose"
},
"ava": {
"files": [
"test.js",
"*.test.js"
]
},
"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": [
"babel",
"conventional-changelog",
"commitlint",
"utility"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/utils": "^5.1.1",
"ava": "0.22.0",
"babel-core": "6.26.0",
"xo": "0.18.2"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"fast-async": "^6.3.0"
}
}