-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 822 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 822 Bytes
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
{
"name": "graphql-makers",
"version": "0.0.5",
"description": "Functions to make GraphQL types based on schema-language definitions",
"main": "lib/index.js",
"repository": "jscomplete/graphql-makers",
"author": "Samer Buna <samer@jscomplete.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rm -rf lib && tsc",
"eslint:check": "eslint \"src/**/*.{ts,js}\" ",
"prettier:check": "prettier -c \"src/**/*.{ts,js,json,yml,graphql}\""
},
"peerDependencies": {
"graphql": "^14.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"graphql": "^14.5.8",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}