forked from alexandermendes/danger-plugin-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "danger-plugin-coverage",
"version": "1.0.0",
"description": "A Danger plugin to report code coverage.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "babel src --out-dir dist",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn install && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/alexandermendes/danger-plugin-coverage"
},
"keywords": [
"danger",
"danger-plugin",
"coverage",
"clover"
],
"author": "Alex Mendes",
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"mock-fs": "^4.13.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"fast-glob": "^3.2.4",
"xml2js": "^0.6.2"
}
}