-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "graphql-persisted-queries-middleware",
"version": "0.0.0",
"description": "GraphQL server middleware for automatic persisted queries",
"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",
"vscodetest": "nyc --reporter=text-summary cucumber-js --compiler ts:ts-node/register test/features/ -r test/step_definitions/ -f ./test/tap-formatter.js",
"posttest": "node test/createReport.js && nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release"
},
"keywords": [
"graphql"
],
"author": "Kim Brandwijk <[email protected]>",
"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": {
"cucumber-html-reporter": "^3.0.4"
},
"devDependencies": {
"@types/cucumber": "3.2.1",
"@types/node": "8.5.7",
"coveralls": "3.0.0",
"cucumber": "3.2.1",
"nyc": "11.4.1",
"semantic-release": "12.1.0",
"ts-node": "4.1.0",
"typescript": "2.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/supergraphql/graphql-persisted-queries-middleware.git"
},
"bugs": {
"url": "https://github.com/supergraphql/graphql-persisted-queries-middleware/issues"
},
"homepage": "https://github.com/supergraphql/graphql-persisted-queries-middleware#readme"
}