-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 972 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 972 Bytes
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
{
"name": "serverless-plugin-graphiql",
"version": "0.4.0",
"description": "Runs a local http server for graphiql and your graphql handler",
"main": "plugin.js",
"scripts": {
"test": "tap --cov test/unit",
"start": "node server.js",
"debug": "node --inspect --debug-brk server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bencooling/serverless-plugin-graphiql.git"
},
"keywords": [
"graphql",
"graphiql",
"aws",
"serverless",
"lambda",
"faas"
],
"author": "",
"license": "ISC",
"dependencies": {
"aws-event-mocks": "github:serverless/aws-event-mocks",
"babel-register": "^6.22.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-gritcode": "github:gritcode/module-eslint-config-gritcode",
"eslint-plugin-import": "^1.16.0",
"serverless": "^1.5.0",
"tap": "^6.3.2"
}
}