-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "jest-sonar",
"version": "0.2.16",
"description": "A sonar reporter for jest",
"keywords": [
"jest",
"sonar",
"sonarqube",
"test",
"report"
],
"main": "index.js",
"repository": "git@github.com:sh33dafi/jest-sonar.git",
"author": "Yannick Houbrix <yannick.houbrix@gmail.com>",
"license": "MIT",
"scripts": {
"release": "standard-version -s",
"test": "jest --collect-coverage",
"lint": "eslint ."
},
"devDependencies": {
"@commitlint/cli": "17.0.1",
"@commitlint/config-conventional": "17.0.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"jest": "28.1.0",
"prettier": "2.6.2",
"semantic-release": "21.0.1",
"standard-version": "9.5.0"
},
"dependencies": {
"entities": "4.3.0",
"strip-ansi": "6.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test"
}
},
"resolutions": {
"**/lodash": "4.17.20",
"**/dot-prop": "5.2.0"
}
}