-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@graphitation/graphql-eslint-rules",
"license": "MIT",
"version": "0.12.4",
"main": "./src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/graphitation.git",
"directory": "packages/graphql-eslint-rules"
},
"scripts": {
"build": "monorepo-scripts build",
"lint": "monorepo-scripts lint",
"test": "monorepo-scripts test",
"types": "monorepo-scripts types",
"just": "monorepo-scripts"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.0",
"@types/jest": "^26.0.22",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.lowercase": "^4.3.9",
"graphql": "^15.0.0",
"json-schema-to-ts": "2.9.2",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.lowercase": "^4.3.0",
"monorepo-scripts": "*"
},
"peerDependencies": {
"graphql": "^15.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.lowercase": "^4.3.0"
},
"publishConfig": {
"main": "./lib/index",
"types": "./lib/index.d.ts",
"access": "public",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
}
}