-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 3.92 KB
/
package.json
File metadata and controls
158 lines (158 loc) · 3.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@meltwater/mlabs-graphql",
"version": "7.0.0",
"description": "GraphQL client and server toolkit.",
"main": "dist/index.js",
"module": "index.js",
"sideEffects": false,
"keywords": [
"meltwater",
"node"
],
"homepage": "https://github.com/meltwater/mlabs-graphql",
"bugs": "https://github.com/meltwater/mlabs-graphql/issues",
"repository": "meltwater/mlabs-graphql",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "evan.sosenko@meltwater.com"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"data",
"dist",
"docs"
],
"scripts": {
"test": "nyc ava",
"pretest": "npm-run-all lint",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:inspect": "node --inspect node_modules/ava/profile",
"test:inspect:watch": "nodemon --inspect node_modules/ava/profile",
"lint": "gulp lint",
"clean": "del dist",
"build": "npm-run-all --parallel build:*",
"prebuild": "npm-run-all clean",
"build:index": "babel --source-maps --out-dir dist index.js",
"build:lib": "babel --source-maps --ignore='**/*.spec.js' --out-dir dist/lib lib",
"dist": "npm-run-all build",
"predist": "npm-run-all test",
"preversion": "npm-run-all dist",
"postversion": "git push && git push --tags",
"example": "babel-node examples",
"example:watch": "nodemon --exec babel-node examples",
"example:inspect": "babel-node --inspect examples",
"example:inspect:watch": "nodemon --exec babel-node --inspect examples",
"watch": "gulp watch",
"pretty": "prettier --ignore-path .gitignore --write '**/*.(js|json|graphql)'",
"format": "npm-run-all --serial pretty format:*",
"format:js": "standard --fix",
"report": "nyc report"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"ava": {
"files": [
"**/*.spec.js",
"!dist/**/*",
"!package/**/*"
],
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"**/index.js",
"dist/**/*.js",
"package/**/*.js",
"examples/**/*.js",
"**/*.spec.js"
],
"reporter": [
"html",
"lcov",
"text"
]
},
"nodemonConfig": {
"ignore": [
"**/*.spec.js",
"test/",
"tmp/"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"endOfLine": "lf"
},
"engines": {
"node": ">=10.13.0"
},
"resolutions": {
"eslint": "^7.12.1",
"standard": "^16.0.2"
},
"dependencies": {
"@koa/router": "^10.0.0",
"@meltwater/mlabs-http": "^2.0.1",
"@meltwater/mlabs-logger": "^6.0.0",
"@meltwater/phi": "^3.0.0",
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"apollo-link-http": "^1.5.3",
"apollo-server-core": "^2.3.1",
"apollo-server-koa": "^2.3.1",
"async-retry": "^1.2.3",
"awilix": "^4.0.0",
"graphql": "^15.4.0",
"graphql-playground-middleware-koa": "^1.6.6",
"graphql-tag": "^2.8.0",
"graphql-tools": "^7.0.1",
"isomorphic-unfetch": "^3.0.0",
"koa-bodyparser": "^4.2.0",
"type-is": "^1.6.16",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@meltwater/examplr": "^5.0.0",
"ava": "^3.3.0",
"del-cli": "^3.0.0",
"eslint": "^7.12.1",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.0",
"gulp-jsonlint": "^1.1.2",
"gulp-standard": "^14.0.0",
"gulp-watch": "^5.0.0",
"gulplog": "^1.0.0",
"koa": "^2.4.1",
"nock": "^13.0.5",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"prettier": "^2.0.1",
"prom-client": "^12.0.0",
"standard": "^16.0.2"
}
}