-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
121 lines (121 loc) · 3.69 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "elm-review",
"version": "2.12.0",
"description": "Run elm-review from Node.js",
"keywords": [
"elm",
"review",
"elm-review",
"lint",
"linter",
"check",
"cli",
"AST"
],
"homepage": "https://github.com/jfmengels/node-elm-review#readme",
"bugs": {
"url": "https://github.com/jfmengels/node-elm-review/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfmengels/node-elm-review.git"
},
"funding": {
"url": "https://github.com/sponsors/jfmengels"
},
"license": "BSD-3-Clause",
"author": "Jeroen Engels",
"type": "commonjs",
"bin": {
"elm-review": "bin/elm-review"
},
"files": [
"/ast-codec/src/**/*.elm",
"/ast-codec/elm.json",
"/bin/",
"/lib/**/*.js",
"/parseElm/**/*.elm",
"/parseElm/elm.json",
"/new-package/elm-review-package-tests/",
"/new-package/github/",
"/new-package/maintenance/",
"/init-templates/",
"/vendor/",
"/template/src/**/*.elm"
],
"scripts": {
"check-engines": "ls-engines --mode=ideal",
"elm-format": "elm-format --validate ast-codec init-templates new-package parseElm review template",
"elm-tests": "(cd template/ && elm make src/Elm/Review/Main.elm --output=/dev/null && elm-test)",
"eslint-check": "eslint . --report-unused-disable-directives --max-warnings=0",
"eslint-fix": "npm run eslint-check -- --fix",
"jest": "jest",
"prepare": "elm-tooling install",
"prettier-check": "prettier . --check --cache",
"prettier-fix": "prettier . --write --cache",
"test": "turbo run testing check-engines --continue",
"test-sync": "npm run jest && npm run test-run",
"test-run": "(cd test/ && node ./run.mjs)",
"test-run-record": "(cd test/ && node ./run.mjs record)",
"tsc": "tsc",
"tsc-watch": "tsc --watch"
},
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.5.2",
"cross-spawn": "^7.0.3",
"elm-solve-deps-wasm": "^1.0.2 || ^2.0.0",
"fastest-levenshtein": "^1.0.16",
"find-up": "^4.1.0 || ^5.0.0",
"folder-hash": "^3.3.0",
"glob": "^10.2.6",
"got": "^11.8.5",
"graceful-fs": "^4.2.11",
"minimist": "^1.2.6",
"ora": "^5.4.0",
"path-key": "^3.1.1",
"prompts": "^2.2.1",
"strip-ansi": "^6.0.0",
"terminal-link": "^2.1.1",
"tinyglobby": "^0.2.10",
"which": "^2.0.2",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@package-json/types": "^0.0.11",
"@types/cross-spawn": "~6.0.6",
"@types/folder-hash": "~3.3.0",
"@types/fs-extra": "~9.0.13",
"@types/jest": "~29.5.14",
"@types/minimist": "~1.2.5",
"@types/node": "~14.18.63",
"@types/prompts": "~2.4.9",
"@types/which": "~2.0.2",
"@types/wrap-ansi": "~8.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"elm-test": "^0.19.1-revision12",
"elm-tooling": "^1.15.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.2.3",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-todo-plz": "^1.3.1",
"eslint-plugin-unicorn": "^52.0.0",
"jest": "^29.7.0",
"jest-file-snapshot": "^0.7.0",
"ls-engines": "^0.9.3",
"prettier": "^2.8.8",
"turbo": "^2.2.3",
"typescript": "~5.6.3",
"zx": "^8.2.4"
},
"packageManager": "[email protected]+sha512.dc700d97c8bd0ca9d403cf4fe0a12054d376f048d27830a6bc4a9bcce02ec42143cdd059ce3525f7dce09c6a4e52e9af5b996f268d8729c8ebb1cfad7f2bf51f",
"engines": {
"node": "14 >=14.21 || 16 >=16.20 || 18 || 20 || >=22"
}
}