This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 3.36 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
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
{
"name": "graphql-tools-fork",
"version": "9.0.2",
"description": "Forked graphql-tools, still more useful tools to create and manipulate GraphQL schemas.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!/dist/test"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "npm run compile",
"precompile": "npm run clean",
"compile": "tsc",
"pretest": "npm run clean && npm run compile",
"test": "npm run testonly",
"posttest": "npm run lint && npm run prettier:check",
"lint": "eslint --ext .js,.ts src",
"lint:watch": "esw --watch --cache --ext .js,.ts src",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/**.js --require source-map-support/register",
"testonly:cover": "nyc npm run testonly",
"testonly:watch": "mocha -w --reporter spec --full-trace ./dist/test/**.js --require source-map-support/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run compile",
"prettier": "prettier --trailing-comma all --single-quote --write src/**/*.ts",
"prettier:check": "prettier --trailing-comma all --single-quote --check src/**/*.ts",
"prerelease": "npm test",
"release": "npm run releaseonly",
"releaseonly": "standard-version",
"typedoc": "typedoc src/delegate/index.ts src/generate/index.ts src/links/index.ts src/polyfills/index.ts src/mock/index.ts src/scalars/index.ts src/stitch/index.ts src/utils/index.ts src/wrap/index.ts src/Interfaces.ts typings.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaacovCR/graphql-tools-fork.git"
},
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yaacovCR/graphql-tools-fork/issues"
},
"homepage": "https://github.com/yaacovCR/graphql-tools-fork#readme",
"dependencies": {
"apollo-link": "^1.2.13",
"apollo-upload-client": "^13.0.0",
"deprecated-decorator": "^0.1.6",
"form-data": "^3.0.0",
"iterall": "^1.3.0",
"node-fetch": "^2.6.0",
"tslib": "^1.11.0",
"uuid": "^7.0.2"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0-rc"
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/dateformat": "3.0.1",
"@types/express": "4.17.3",
"@types/graphql-type-json": "0.3.2",
"@types/graphql-upload": "8.0.3",
"@types/mocha": "7.0.2",
"@types/node": "13.9.3",
"@types/node-fetch": "2.5.5",
"@types/uuid": "7.0.2",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"babel-eslint": "10.1.0",
"body-parser": "1.19.0",
"chai": "4.2.0",
"coveralls": "3.0.11",
"dataloader": "2.0.0",
"dateformat": "3.0.3",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.2",
"eslint-watch": "6.0.1",
"express": "4.17.1",
"express-graphql": "0.9.0",
"graphql": "14.6.0",
"graphql-subscriptions": "1.1.0",
"graphql-type-json": "0.3.1",
"graphql-upload": "10.0.0",
"mocha": "7.1.1",
"nyc": "15.0.0",
"prettier": "2.0.2",
"rimraf": "3.0.2",
"source-map-support": "0.5.16",
"standard-version": "7.1.0",
"typescript": "3.8.3",
"zen-observable-ts": "0.8.20"
}
}