-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
82 lines (82 loc) · 1.92 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
{
"name": "apollo-datasource-http",
"version": "0.21.0",
"author": "Dustin Deus <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StarpTech/apollo-datasource-http"
},
"homepage": "https://github.com/StarpTech/apollo-datasource-http#readme",
"bugs": {
"url": "https://github.com/StarpTech/apollo-datasource-http/issues"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"cov": "nyc --reporter=lcov --reporter=text-summary -- npm run test",
"test": "ava",
"prepare": "npm run build",
"release": "release-it --github.release"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"engines": {
"node": ">=12"
},
"keywords": [
"apollo",
"data-source",
"rest",
"json",
"rest",
"graphql"
],
"files": [
"dist/src"
],
"sideEffects": false,
"ava": {
"files": [
"test/*"
],
"extensions": [
"ts"
],
"timeout": "10s",
"require": [
"ts-node/register"
]
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"apollo-datasource": "^3.3.1",
"apollo-server-caching": "^3.3.0",
"apollo-server-errors": "^3.3.1",
"apollo-server-types": "^3.5.1",
"stream-to-promise": "^3.0.0",
"undici": "^4.13.0"
},
"peerDependencies": {
"graphql": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@sinonjs/fake-timers": "^8.1.0",
"@tsconfig/node12": "^1.0.9",
"@types/node": "^17.0.5",
"@types/sinonjs__fake-timers": "^8.1.1",
"@types/stream-to-promise": "^2.2.1",
"abort-controller": "^3.0.0",
"apollo-datasource-rest": "^3.5.1",
"ava": "^3.15.0",
"graphql": "^16.3.0",
"h2url": "^0.2.0",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"release-it": "^14.12.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"uid": "^2.0.0"
}
}