-
-
Notifications
You must be signed in to change notification settings - Fork 574
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "eslint-plugin-graphile-export",
"version": "0.0.2-beta.5",
"description": "ESLint plugin to help ensure your schema is exportable by graphile-export",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"eslint-plugin",
"graphile",
"exporter",
"schema",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/types": "^7.25.6",
"@types/eslint": "^8.44.2",
"@types/estree": "^1.0.1",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}