-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.28 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
{
"name": "graphql-query-to-json",
"version": "2.0.1",
"description": "Convert graphQL queries and mutations to easily readable JSON representations.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "npm run build -- --watch",
"test": "jest dist",
"test:coverage": "npm test -- --coverage",
"updateTestCoverage": "node scripts/updateTestCoverage.js",
"lintFull": "prettier --write '**/*.{js,jsx,ts,tsx,json}' && eslint --fix '**/*.{js,jsx,ts,tsx}'"
},
"author": "Tray.io",
"homepage": "https://github.com/trayio/graphql-query-to-json",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-rickschubert": "^1.0.11",
"eslint-plugin-jest": "^23.1.1",
"husky": "^3.1.0",
"jest": "^25.5.4",
"lint-staged": "^9.5.0",
"node-fetch": "^2.6.1",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"dependencies": {
"graphql": "^14.7.0",
"json-to-graphql-query": "^1.9.0",
"lodash.mapvalues": "^4.6.0"
}
}