forked from gunar/shellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.2 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
{
"name": "shellcheck",
"version": "2.2.0",
"private": false,
"description": "Wrapper to download shellcheck",
"keywords": [
"bash",
"sh",
"shell",
"shellcheck"
],
"homepage": "https://github.com/gunar/shellcheck#readme",
"bugs": {
"url": "https://github.com/gunar/shellcheck/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunar/shellcheck.git"
},
"license": "MIT",
"author": {
"name": "Gunar C. Gessner",
"email": "[email protected]",
"url": "http://gunargessner.com/"
},
"contributors": [
{
"name": "Carlo Corradini",
"email": "[email protected]",
"url": "https://linkedin.com/in/carlo-corradini"
}
],
"bin": {
"shellcheck": "./bin/shellcheck.js"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"./bin",
"./build"
],
"engines": {
"node": ">=18.4.0 || >=16.17.0"
},
"scripts": {
"build": "npx tsc --build tsconfig.json",
"check": "npx npm-run-all --npm-path npm check:*",
"check:format": "npx prettier --check .",
"check:lint": "npx eslint .",
"check:markdown": "npx markdownlint \"**/*.md\"",
"check:spell": "npx cspell lint --config cspell.json --no-progress --show-context \"**\"",
"check:type": "npx tsc --noEmit tsconfig.json",
"clean": "npx shx rm -rf build coverage",
"fix": "npx npm-run-all --npm-path npm fix:*",
"fix:format": "npx prettier --write .",
"fix:lint": "npx eslint --fix .",
"fix:markdown": "npx markdownlint --fix \"**/*.md\"",
"postbuild": "npx shx chmod -R 755 ./bin",
"prebuild": "npm run clean",
"prepare": "npx ts-patch install -s && npx husky install",
"prepublishOnly": "npm run build",
"test": "npx jest --verbose --coverage",
"test:ci": "npx jest --verbose --coverage --ci --forceExit --detectOpenHandles --runInBand",
"test:watch": "npx jest --watch"
},
"devDependencies": {
"@cspell/dict-en_us": "^4.2.1",
"@cspell/dict-node": "^4.0.2",
"@cspell/dict-npm": "^5.0.3",
"@cspell/dict-typescript": "^3.1.0",
"@cspell/eslint-plugin": "^6.20.1",
"@types/decompress": "^4.2.4",
"@types/global-agent": "^2.1.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"cspell": "^6.20.1",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.4.1",
"lint-staged": "^13.1.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.3",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"decompress": "^4.2.1",
"global-agent": "^3.0.0"
}
}