-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "monolint",
"version": "0.0.5",
"description": "Monorepo linter for checking folder structure and file contents",
"main": "dist/main.js",
"bin": "dist/main.js",
"files": [
"dist/main.js"
],
"engines": {
"node": ">=14",
"yarn": "^1.22.19"
},
"packageManager": "yarn@1.22.19",
"scripts": {
"build": "make build",
"test": "make test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flaviostutz/monolint.git"
},
"author": "flaviostutz",
"license": "MIT",
"bugs": {
"url": "https://github.com/flaviostutz/monolint/issues"
},
"homepage": "https://github.com/flaviostutz/monolint#readme",
"devDependencies": {
"@stutzlab/eslint-config": "^2.4.0",
"@tsconfig/node14": "^1.0.3",
"@types/diff": "^5.0.2",
"@types/fast-levenshtein": "^0.0.2",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/jmespath": "^0.15.0",
"@types/node": "^18.11.18",
"esbuild": "^0.17.9",
"esbuild-jest": "^0.5.0",
"eslint": "^8.34.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.0",
"jest": "^29.4.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "^4.1.2",
"diff": "^5.1.0",
"fast-glob": "^3.2.12",
"fast-levenshtein": "^3.0.0",
"fs-extra": "^11.1.0",
"jmespath": "^0.16.0",
"js-yaml": "^4.1.0",
"yaml-cfn": "^0.3.2",
"yargs": "^17.6.2"
}
}