-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "mb-graphql",
"version": "0.1.12",
"description": "mountebank test doubles for GraphQL",
"author": "bashj79",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bashj79/mb-graphql.git"
},
"bin": {
"mb-graphql": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run compile && npm run lint && npm test && npm run test:integration",
"clean": "rimraf dist",
"compile": "babel src --out-dir dist --ignore '**/*.test.js'",
"lint": "eslint src features",
"lint:fix": "eslint src features --fix",
"test": "jest",
"test:integration": "cucumber-js --publish-quiet --require-module @babel/register",
"test:integration-only": "cucumber-js --tags \"@only\" --publish-quiet --require-module @babel/register"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"mountebank",
"graphql",
"test",
"stub",
"mock",
"double"
],
"dependencies": {
"@babel/runtime": "^7.13.10",
"@graphql-tools/delegate": "^7.1.5",
"@graphql-tools/load": "^6.2.7",
"@graphql-tools/schema": "^7.1.5",
"@graphql-tools/url-loader": "^6.10.1",
"@graphql-tools/wrap": "^7.0.8",
"apollo-server": "^2.24.0",
"graphql": "^15.5.0",
"graphql-middleware": "^6.0.10",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.14",
"@cucumber/cucumber": "^7.1.0",
"babel-jest": "^26.6.3",
"cpy-cli": "^3.1.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"expect": "^26.6.2",
"jest": "^26.6.3",
"mountebank": "^2.4.0",
"rimraf": "^3.0.2"
}
}