-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "graphql-proxy-api",
"version": "1.1.0",
"description": "GraphQL Proxy API for testing and prototyping.",
"author": "Dhyey Thumar",
"email": "dhyeythumar@gmail.com",
"license": "MIT",
"main": "src/http/any-catchall/index.js",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "npx sandbox",
"test": "tape test/*-test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhyeythumar/graphql-proxy-api.git"
},
"keywords": [
"GraphQL Proxy API",
"Wrapper around JSONPlaceholder's Rest APIs",
"Vercel Serverless",
"GraphQL test API for frontend apps"
],
"bugs": {
"url": "https://github.com/dhyeythumar/graphql-proxy-api/issues"
},
"homepage": "https://github.com/dhyeythumar/graphql-proxy-api#readme",
"devDependencies": {
"@architect/sandbox": "^4.5.2",
"tap-spec": "^5.0.0",
"tape": "^5.4.1",
"tiny-json-http": "^7.3.1"
}
}