-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 923 Bytes
/
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
{
"name": "@ephys/graphql-non-null-directive",
"version": "1.1.1",
"description": "Adds a @nonNull directive for GraphQL",
"main": "lib/index.js",
"scripts": {
"test": "eslint src",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ephys/graphql-non-null-directive.git"
},
"keywords": [
"GraphQL"
],
"author": "Guylian Cox <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ephys/graphql-non-null-directive/issues"
},
"homepage": "https://github.com/ephys/graphql-non-null-directive#readme",
"dependencies": {
"graphql": "^15.5.1",
"graphql-tools": "^7.0.5",
"lodash": "^4.17.21"
},
"devDependencies": {
"@foobarhq/eslint-config": "^10.2.0",
"@foobarhq/eslint-config-typescript": "^10.2.0",
"eslint": "^7.29.0",
"typescript": "^4.3.4"
}
}