-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "eslint-plugin-libram",
"version": "0.4.20",
"description": "Eslint rules for Libram",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"libram"
],
"author": "Patrick Hulin",
"main": "dist/index.js",
"scripts": {
"build": "yarn run tsc",
"clean": "rm -f {lib,dist,tests}/*.js {lib,dist,tests}/*.d.ts {lib,dist,tests}/**/*.js {lib,dist,tests}/**/*.d.ts",
"docs": "yarn run typedoc",
"format": "yarn run prettier --write .",
"lint": "yarn run eslint lib tests/lib --ext .ts",
"prepack": "yarn run build && yarn run updateData",
"test": "mocha tests --recursive --extension ts --require tsx",
"updateData": "node --import tsx update-data.mjs",
"watch": "yarn run tsc --watch"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"data/*.json"
],
"dependencies": {
"html-entities": "^2.5.2",
"requireindex": "~1.2.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/estree": "1.0.5",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.11",
"@types/requireindex": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"mocha": "^10.6.0",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.0.0"
},
"resolutions": {
"@types/estree": "1.0.5"
},
"license": "MIT",
"packageManager": "[email protected]"
}