-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "@hack4impact-uiuc/eslint-plugin",
"version": "2.0.11",
"description": "An ESLint plugin intended for use with Hack4Impact UIUC projects.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json && prettier --write dist/**/*.js",
"clean": "rimraf dist/",
"format": "prettier --write \"./**/*.{ts,json,md,yml}\"",
"format:check": "prettier --check \"./**/*.{ts,json,md,yml}\"",
"lint": "eslint src tests --ext .ts && markdownlint README.md docs",
"prepack": "npm run build",
"test": "npm run clean && tsc -p tsconfig.json && mocha --timeout 10000 --recursive dist/tests",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack4impact-uiuc/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"h4i",
"h4iuiuc",
"hack4impact",
"uiuc",
"hack4impact-uiuc"
],
"author": "Hack4Impact UIUC",
"contributors": [
{
"name": "Arpan Laha",
"email": "arpanlaha99@gmail.com",
"url": "https://github.com/arpanlaha"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hack4impact-uiuc/eslint-plugin/issues"
},
"homepage": "https://github.com/hack4impact-uiuc/eslint-plugin#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@typescript-eslint/typescript-estree": "^4.25.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/eslint": "^7.2.11",
"@types/estree": "0.0.47",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-plugin-eslint-plugin": "^3.0.3",
"markdownlint-cli": "^0.27.1",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
},
"peerDependencies": {
"eslint": "^7.27.0"
}
}