UNPKG

2.02 kBJSONView Raw
1{
2 "name": "body-parser-graphql",
3 "version": "1.1.0",
4 "description": "GraphQL server middleware to support application/graphql requests",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "scripts": {
8 "prepublish": "npm run build",
9 "build": "rm -rf dist && tsc -d",
10 "test": "nyc cucumber-js --compiler ts:ts-node/register test/features/ -r test/step_definitions/ -f json:test/report/cucumber_report.json",
11 "posttest": "node test/createReport.js && nyc report --reporter=text-lcov | coveralls",
12 "vscodetest": "nyc --reporter=lcov --reporter=text-summary cucumber-js --compiler ts:ts-node/register test/features/ -r test/step_definitions/ -f ./test/tap-formatter.js",
13 "semantic-release": "semantic-release"
14 },
15 "keywords": [
16 "graphql",
17 "express"
18 ],
19 "author": "Kim Brandwijk <kim.brandwijk@gmail.com>",
20 "license": "MIT",
21 "nyc": {
22 "extension": [
23 ".ts"
24 ],
25 "require": [
26 "ts-node/register"
27 ],
28 "include": [
29 "src/**/*.ts"
30 ],
31 "exclude": [
32 "**/*.d.ts"
33 ],
34 "reporter": [
35 "text",
36 "lcov",
37 "json"
38 ],
39 "all": true,
40 "sourceMap": true,
41 "instrument": true
42 },
43 "dependencies": {
44 "body-parser": "^1.18.2"
45 },
46 "devDependencies": {
47 "@types/chai": "4.1.2",
48 "@types/chai-http": "3.0.4",
49 "@types/cucumber": "3.2.2",
50 "@types/express": "4.11.1",
51 "@types/node": "9.4.6",
52 "chai": "4.1.2",
53 "chai-http": "3.0.0",
54 "coveralls": "3.0.0",
55 "cucumber": "3.2.1",
56 "cucumber-html-reporter": "4.0.1",
57 "express": "4.16.2",
58 "nyc": "11.4.1",
59 "semantic-release": "12.4.1",
60 "ts-node": "5.0.0",
61 "typescript": "2.7.2"
62 },
63 "repository": {
64 "type": "git",
65 "url": "https://github.com/supergraphql/body-parser-graphql.git"
66 },
67 "bugs": {
68 "url": "https://github.com/supergraphql/body-parser-graphql/issues"
69 },
70 "homepage": "https://github.com/supergraphql/body-parser-graphql#readme",
71 "release": {
72 "branch": "master"
73 }
74}