-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "codacy-markdownlint",
"description": "Markdownlint Tool for Codacy",
"keywords": [
"codacy",
"markdownlint",
"markdown",
"linter",
"typescript"
],
"homepage": "https://github.com/codacy/codacy-markdownlint#readme",
"bugs": {
"url": "https://github.com/codacy/codacy-markdownlint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codacy/codacy-markdownlint.git"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"directories": {
"test": "./src/test",
"src": "./src",
"doc-generator": "./doc-generator"
},
"scripts": {
"build": "tsc --showConfig && tsc",
"build:docker": "npm run build && docker build -t codacy-markdownlint .",
"build:docs": "npm run build && node dist/src/docGenerator.js",
"lint": "eslint --fix --ext .ts ./src",
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"npm run generateDocs",
"sort-package-json",
"git add"
],
"src/*.{ts,js,css,json,md}": [
"git add"
]
},
"prettier": {
"semi": false
},
"mocha": {
"extension": [
"ts"
],
"require": "ts-node/register",
"spec": "src/test/**/*.spec.ts"
},
"dependencies": {
"codacy-seed": "^2.2.2",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"markdownlint": "^0.34.0",
"node-fetch": "^3.3.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^1.6.3",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"axios": "^1.7.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2"
}
}