This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.1 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
{
"name": "graphql-monkey",
"version": "0.2.2",
"description": "A test framework and CLI for running fully automated, randomized tests against any GraphQL API.",
"keywords": [
"graphql",
"test",
"testing",
"randomized"
],
"contributors": [
"Morris Brodersen <mb@morrisbrodersen.de> (http://morrisbrodersen.de)",
"Frederik Priede <f.priede@md.de>"
],
"license": "ISC",
"module": "src/index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"graphql-monkey": "./dist/src/bin.js",
"gqlm": "./dist/src/bin.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"clean": "rm -rf dist",
"lint": "tslint --project .",
"format": "prettier --single-quote --write **/*.ts *.json",
"test": "nyc mocha test",
"prepare": "npm run clean && npm run build"
},
"nyc": {
"extension": [
".js",
".ts"
],
"exclude": [
"**/*.d.ts",
"dist",
"test",
"coverage"
],
"reporter": [
"html"
],
"cache": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.ts": [
"tslint",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.2",
"chance": "^1.1.0",
"graphql": "^14.5.8",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/chance": "^1.0.7",
"@types/express": "^4.17.1",
"@types/express-graphql": "^0.9.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.20",
"@types/prettier": "^1.18.3",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql-tools": "^4.0.5",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}