This repository has been archived by the owner on May 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "graphql-static-binding",
"version": "0.0.0",
"description": "Generate static binding files for a GraphQL schema",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"pretest": "npm run build",
"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"
],
"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.2",
"@types/graphql": "0.12.4",
"@types/node": "9.4.6",
"coveralls": "3.0.0",
"cucumber": "3.2.1",
"graphql": "0.13.1",
"nyc": "11.4.1",
"semantic-release": "12.4.1",
"ts-node": "5.0.0",
"typescript": "2.7.2"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/supergraphql/graphql-static-binding.git"
}
}