-
Notifications
You must be signed in to change notification settings - Fork 27
/
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": "grunt-sonar-runner",
"description": "Sonar Analysis Runner from grunt. The major version is kept in sync with sonar runner distribution version.",
"version": "3.0.2",
"homepage": "https://github.com/skhatri/grunt-sonar-runner",
"author": {
"name": "Suresh Khatri",
"email": "[email protected]"
},
"repository": "skhatri/grunt-sonar-runner",
"bugs": {
"url": "https://github.com/skhatri/grunt-sonar-runner/issues"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/skhatri/grunt-sonar-runner/blob/master/LICENSE"
}
],
"engines": {
"node": ">=8"
},
"scripts": {
"test": "jest",
"jest-test": "jest --coverage"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-run": "^0.8.1",
"jest": "^26.6.3",
"should": "^13.2.3"
},
"peerDependencies": {
"grunt": ">=0.4.5"
},
"keywords": [
"gruntplugin",
"sonar",
"sonar-runner",
"sonar-scanner"
],
"dependencies": {
"grunt-cli": "^1.3.2"
}
}