-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "xebia-radar-lint",
"version": "1.0.0-beta.1",
"description": "linter for Xebia Technology Radar",
"bin": {
"xebia-radar-lint": "bin/linter.js",
"xebia-radar-status": "bin/status.js"
},
"scripts": {
"prestart": "npm run build && npm link",
"start": "tsc --watch -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"prepareOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"selfcheck": "npx xebia-radar-lint ."
},
"keywords": [],
"author": "Wojciech Grabowski [email protected]",
"contributors": [
"Wojciech Grabowski [email protected]"
],
"bugs": {
"url": "https://github.com/wgrabowski/xebia-radar-lint/issues"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.5",
"@types/ansi-colors": "3.2.2",
"@types/node": "20.4.5",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.59.9",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-functional": "5.0.8",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.7",
"typescript": "4.5.4"
},
"dependencies": {
"ansi-colors": "4.1.3",
"enquirer": "2.3.6",
"node-fetch-native": "1.2.0"
}
}