-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 777 Bytes
/
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
{
"name": "ecocode-javascript-test-project",
"version": "1.0.0",
"description": "JavaScript project to test ESLint and SonarQube plugins of ecoCode",
"repository": {
"type": "git",
"url": "git+https://github.com/green-code-initiative/ecoCode-javascript-test-project.git"
},
"license": "GPL-3.0",
"author": "Green Code Initiative",
"scripts": {
"lint": "eslint src/.",
"lint:report": "eslint src/. -f json -o eslint-report.json",
"sonar": "sonar-scanner"
},
"devDependencies": {
"@ecocode/eslint-plugin": "^1.5.0",
"@nestjs/common": "^10.3.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"sonarqube-scanner": "^3.5.0",
"typescript": "^5.4.5"
}
}