-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "body-parser-graphql",
"version": "0.0.0-development",
"description": "GraphQL server middleware to support application/graphql requests",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"test": "nyc cucumber-js --compiler ts:ts-node/register test/features/ -r test/step_definitions/ -f json:test/report/cucumber_report.json",
"posttest": "node test/createReport.js && nyc report --reporter=text-lcov | coveralls",
"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",
"semantic-release": "semantic-release"
},
"keywords": [
"graphql",
"express"
],
"author": "Kim Brandwijk <kim.brandwijk@gmail.com>",
"license": "MIT",
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"lcov",
"json"
],
"all": true,
"sourceMap": true,
"instrument": true
},
"dependencies": {
"body-parser": "^1.18.2"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/chai-http": "3.0.4",
"@types/cucumber": "3.2.2",
"@types/express": "4.11.1",
"@types/node": "9.4.6",
"chai": "4.1.2",
"chai-http": "3.0.0",
"coveralls": "3.0.0",
"cucumber": "3.2.1",
"cucumber-html-reporter": "4.0.1",
"express": "4.16.2",
"nyc": "11.4.1",
"semantic-release": "12.4.1",
"ts-node": "5.0.0",
"typescript": "2.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/supergraphql/body-parser-graphql.git"
},
"bugs": {
"url": "https://github.com/supergraphql/body-parser-graphql/issues"
},
"homepage": "https://github.com/supergraphql/body-parser-graphql#readme",
"release": {
"branch": "master"
}
}