-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "graphql-import-files",
"version": "1.5.2",
"description": "Light and easy package that will load .graphql files and use them with syntax highlighting.",
"repository": "git@github.com:tiago154/graphql-import-files.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"coverage": "npx http-server coverage/lcov-report",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"author": "Tiago Santos Da Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiago154/graphql-import-files/issues"
},
"keywords": [
"graphql-import-files",
"graphql-import",
"graphql import",
"graphql-require-files",
"graphql-require",
"graphql require",
"graphql schema",
"graphql apollo schema",
"graphql gql",
"gql",
"graphql"
],
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "4.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@graphql-tools/merge": "^9.0.0",
"fast-glob": "^3.3.1",
"graphql": "^16.8.1"
},
"files": [
"dist/**/*"
]
}