-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "http-link-dataloader",
"version": "0.0.0-semantic-release",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": "git@github.com:prisma/http-link-dataloader.git",
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client",
"apollo"
],
"author": "Tim Suchanek <tim.suchanek@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/http-link-dataloader/issues"
},
"homepage": "https://github.com/graphcool/http-link-dataloader",
"scripts": {
"prepare": "npm run build",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --type-check --project tsconfig.json {src,test}/**/*.ts",
"test": "npm run lint && npm run build && ava --serial"
},
"devDependencies": {
"@types/fetch-mock": "^6.0.0",
"@types/node": "^9.4.6",
"ava": "^0.25.0",
"fetch-mock": "^6.0.1",
"graphql": "^0.13.1 || ^14.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.7.2",
"semantic-release": "^15.5.2"
},
"dependencies": {
"apollo-link": "^1.2.3",
"cross-fetch": "2.2.2",
"dataloader": "^1.4.0"
}
}