This repository was archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.75 KB
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
79
80
81
82
83
84
85
86
87
{
"name": "codegen-resolvers",
"version": "0.0.2",
"description": "Generate type-safe resolvers from your GraphQL schema definition.",
"githubUrl": "https://github.com/SimpleContacts/codegen-resolvers",
"main": "./dist/index.js",
"bin": {
"codegen-resolvers": "./cli.js"
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"build": "./bin/build.sh",
"check": "yarn run check:eslint && yarn run check:prettier && yarn run check:import-sort",
"check:eslint": "eslint --report-unused-disable-directives src",
"check:import-sort": "import-sort --list-different 'src/**/*.js'",
"check:prettier": "prettier --list-different 'src/**/*.js'",
"fix": "yarn run fix:prettier && yarn run fix:import-sort",
"fix:import-sort": "import-sort --write 'src/**/*.js'",
"fix:prettier": "prettier --write 'src/**/*.js'",
"prepublish": "in-publish && yarn run actually-prepublish || not-in-publish",
"actually-prepublish": "echo \"\\n\\nPlease run \\`bin/publish.sh <options>\\` instead.\\n\\n\" && exit 2",
"test": "yarn run clean && yarn run test:flow && yarn run test:jest && yarn run check",
"test:flow": "flow check",
"test:jest": "jest --passWithNoTests --coverage",
"watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimpleContacts/codegen-resolvers.git"
},
"author": "Vincent Driessen",
"license": "UNLICENSED",
"keywords": [
"graphql",
"resolvers",
"codegen",
"code generation"
],
"bugs": {
"url": "https://github.com/SimpleContacts/codegen-resolvers/issues"
},
"homepage": "https://github.com/SimpleContacts/codegen-resolvers#readme",
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-flow": "^7.10.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^5.1.3",
"flow-bin": "^0.120.1",
"flow-copy-source": "^2.0.9",
"flow-typed": "^3.1.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-eslint": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"in-publish": "^2.0.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/parser": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@babel/traverse": "^7.10.1",
"commander": "^2.19.0",
"graphql": "^14.2.1",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"mkdirp-promise": "^5.0.1",
"prettier": "^2.0.5"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"fixtures.js",
".skip.js"
]
}
}