-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 928 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
36
37
38
39
{
"name": "postgraphile-plugin-derived-field",
"version": "1.0.0-alpha.7",
"description": "Add derived fields in PostGraphile",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "scripts/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbretl/postgraphile-plugin-derived-field.git"
},
"author": "Matt Bretl",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattbretl/postgraphile-plugin-derived-field/issues"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"graphql": "^14.6.0",
"jest": "^25.5.0",
"pg": "^7.18.2",
"postgraphile-core": "4.0.0",
"prettier": "1.19.1"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$"
},
"files": [
"src"
],
"engines": {
"node": ">=10"
}
}