This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
forked from stylesuxx/graphql-custom-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graphql-extra-scalars",
"version": "2.1.0",
"description": "Collection of extra GraphQL scalar types like Email, URL, Password and more",
"keywords": [
"GraphQL",
"GraphQL types",
"GraphQL scalar types"
],
"author": "Martin Štekl <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stekycz/graphql-extra-scalars.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "bin/build",
"lint": "bin/lint || true",
"typescript": "bin/typescript || true",
"test": "bin/jest",
"check-all": "bin/check-all || true",
"prepare": "bin/build"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"@types/luxon": "1.15.2"
},
"peerDependencies": {
"graphql": ">=14.3.1",
"luxon": "^1.17.2"
},
"devDependencies": {
"@cookielab.io/eslint-config-server": "1.0.0",
"@types/graphql": "14.2.3",
"@types/jest": "24.0.15",
"@types/node": "12.6.8",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"eslint": "6.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.18.2",
"flowgen": "1.9.2",
"graphql": "14.3.1",
"jest": "24.8.0",
"luxon": "1.17.2",
"ts-jest": "24.0.2",
"typescript": "3.5.3"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.(ts|js)"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
],
"moduleFileExtensions": [
"ts",
"js"
]
}
}