-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.25 KB
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
85
86
87
88
89
90
91
92
93
94
{
"name": "codacy-spectral",
"description": "Spectral Tool for Codacy",
"keywords": [
"codacy",
"spectral",
"yamlLinter",
"jsonLinter",
"yaml",
"json",
"linter",
"typescript"
],
"homepage": "https://github.com/codacy/codacy-spectral#readme",
"bugs": {
"url": "https://github.com/codacy/codacy-spectral/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codacy/codacy-spectral.git"
},
"license": "Apache-2.0",
"main": "dist/src/index.js",
"directories": {
"test": "./src/test",
"src": "./src",
"doc-generator": "./doc-generator"
},
"scripts": {
"compile": "tsc",
"start": "node dist/index.js",
"test": "mocha",
"dockerBuild": "docker build -t codacy-spectral ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"npm run generateDocs",
"sort-package-json",
"git add"
],
"src/*.{ts,js,css,json,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"prettier": {
"semi": false
},
"mocha": {
"extension": [
"ts"
],
"require": "ts-node/register",
"spec": "src/test/**/*.spec.ts"
},
"dependencies": {
"@eslint/config-array": "0.21.0",
"@eslint/eslintrc": "3.3.1",
"@stoplight/spectral-core": "1.23.1",
"@stoplight/spectral-parsers": "1.0.5",
"@stoplight/spectral-ruleset-migrator": "1.12.1",
"@stoplight/spectral-rulesets": "1.22.6",
"@stoplight/types": "14.1.1",
"@types/glob": "9.0.0",
"@types/lodash": "4.17.20",
"@types/mocha": "10.0.10",
"@types/node": "24.1.0",
"@types/node-fetch": "2.6.13",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"@typescript-eslint/typescript-estree": "8.44.1",
"axios": "1.12.2",
"chai": "5.2.1",
"codacy-seed": "2.2.7",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"glob": "11.0.3",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"lodash": "4.17.21",
"minimatch": "10.0.3",
"mocha": "11.7.2",
"ts-node": "10.9.2",
"typescript": "5.8.3"
}
}