-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "sonar-web-frontend-reporters",
"description": "sreporter is a Command-Line Interface to generate Front-End linters reporters for the SonarQube plugin",
"version": "3.4.0",
"main": "./lib/api.js",
"bin": {
"sreporter": "./bin/sreporter"
},
"scripts": {
"build": "babel lib --out-dir build",
"lint": "eslint .",
"test": "npm run-script lint && mocha",
"prepublishOnly": "npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupe-sii/sonar-web-frontend-reporters.git"
},
"keywords": [
"reporters",
"jshint",
"sasslint",
"csslint",
"htmlhint",
"eslint",
"angularjs",
"tslint",
"sonar"
],
"author": "Cédric Le Gallo <[email protected]> (http://www.groupe-sii.com/)",
"contributors": [
"Vincent Ogloblinsky",
"Olivier Le Lay",
"Valentin Got"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/groupe-sii/sonar-web-frontend-reporters/issues"
},
"homepage": "https://github.com/groupe-sii/sonar-web-frontend-reporters#readme",
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"csslint": "^1.0.5",
"eslint": "^4.4.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^3.0.0",
"glob": "^7.1.2",
"glob-all": "^3.1.0",
"htmlhint": "^0.11.0",
"jshint": "^2.9.5",
"mkdirp": "^0.5.1",
"sass-lint": "^1.10.2",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"chai": "^4.1.1",
"mocha": "^6.2.0"
},
"engines": {
"node": ">=4.4.5"
}
}