generated from codacy/codacy-public-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "codacy-lizard",
"version": "1.0.0",
"author": "Codacy",
"description": "Lizard Tool for Codacy.",
"keywords": [
"codacy",
"lizard",
"linter"
],
"homepage": "https://github.com/codacy/codacy-lizard#readme",
"bugs": {
"url": "https://github.com/codacy/codacy-lizard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codacy/codacy-lizard.git"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"directories": {
"test": "./src/test",
"docs": "docs",
"src": "src"
},
"scripts": {
"build": "tsc --showConfig && tsc",
"build:docker": "docker build -t codacy-lizard:dev .",
"build:docker:m1": "npm run build:docker -- --platform linux/amd64",
"lint": "eslint --fix --ext .ts ./src",
"test": "mocha",
"preupgrade": "npx npm-check-updates -u -x eslint && npx npm-check-updates -u -t minor eslint",
"upgrade": "npm install"
},
"prettier": {
"semi": false
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"codacy-seed": "2.2.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"mocha": "^10.4.0",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
}
}