This repository was archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@equiem/gql-compat",
"version": "0.0.0-development",
"description": "A tool for checking the compatibility of two GraphQL schemas.",
"main": "dist/index.js",
"bin": {
"gql-compat": "dist/index.js"
},
"config": {
"mochaOpts": "mocha.opts",
"commitizen": {
"path": "@commitlint/prompt"
}
},
"dependencies": {
"chalk": "^2.4.1",
"cli-table3": "^0.5.1",
"commander": "^2.19.0",
"glob": "^7.1.3",
"glob-promise": "^3.4.0",
"graphql": "^14.0.2",
"log4js": "^3.0.6",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"runtypes": "^2.1.6",
"shelljs": "^0.8.2",
"temp-dir": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt": "^7.2.1",
"@types/chai": "~4.1.5",
"@types/chai-as-promised": "~7.1.0",
"@types/graphql": "^14.0.3",
"@types/mocha": "~2.2.48",
"@types/mock-fs": "^3.6.30",
"@types/nock": "^9.3.0",
"@types/request-promise-native": "^1.0.15",
"@types/shelljs": "^0.8.0",
"@types/sinon": "^5.0.5",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"commitizen": "^3.0.4",
"husky": "^1.1.2",
"mocha": "~5.0.5",
"mocha-junit-reporter": "~1.18.0",
"mocha-typescript": "~1.1.12",
"mock-fs": "^4.7.0",
"nock": "^10.0.0",
"nyc": "~13.0.1",
"semantic-release": "^15.10.6",
"sinon": "^6.3.5",
"source-map-support": "^0.5.9",
"testdouble": "^3.8.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "~3.0.3"
},
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"node_modules/**/*.js"
],
"extension": [
".js"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"checkCoverage": true,
"branches": 64,
"functions": 70,
"lines": 70,
"statements": 70,
"watermarks": {
"branches": [
80,
90
],
"functions": [
80,
90
],
"lines": [
80,
90
],
"statements": [
80,
90
]
},
"instrument": true
},
"scripts": {
"build-clean": "rm -rf dist",
"build": "npm run build-clean && tsc && chmod u+x dist/index.js",
"mocha": "bin/nyc-mocha --opts $npm_package_config_mochaOpts",
"debug": "npm run build && npm run mocha",
"lint": "tslint -p . ",
"test": "npm run lint && npm run build && npm run mocha",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Equiem/graphql-compat.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/Equiem/graphql-compat/issues"
},
"homepage": "https://github.com/Equiem/graphql-compat#readme"
}