-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "@freshheads/eslint-plugin-freshheads-analytics",
"version": "0.0.6",
"description": "make sure we track all user events",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"freshheads",
"freshheads-analytics",
"analytics"
],
"types": "lib/index.d.ts",
"author": "Yannick van Bladel",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "mocha lib/tests/**/*.ts --recursive",
"update:eslint-docs": "eslint-doc-generator"
},
"main": "dist/index.js",
"dependencies": {
"@typescript-eslint/scope-manager": "^6.3.0",
"@typescript-eslint/utils": "^6.3.0",
"aria-query": "^5.3.0",
"axobject-query": "^3.2.1",
"eslint-module-utils": "^2.8.0",
"jsx-ast-utils": "^3.3.5"
},
"devDependencies": {
"@types/aria-query": "^5.0.1",
"@types/eslint": "^8.44.2",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@typescript-eslint/rule-tester": "^6.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"license": "ISC"
}