-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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": "gqlm",
"version": "0.2.0",
"description": "A framework for fully automatic monkey testing/fuzz testing of GraphQL APIs",
"keywords": [
"graphql",
"test",
"testing",
"fuzz",
"fuzzing",
"monkey"
],
"homepage": "https://github.com/morris/gqlm",
"repository": {
"type": "git",
"url": "https://github.com/morris/gqlm.git"
},
"bugs": {
"url": "https://github.com/morris/gqlm/issues"
},
"author": "Morris Brodersen <[email protected]> (http://morrisbrodersen.de)",
"license": "ISC",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"clean": "rm -rf coverage dist __gqlm__",
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"test": "jest --runInBand --coverage"
},
"dependencies": {
"chance": "^1.1.11",
"graphql": "^16.6.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/chance": "^1.1.6",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.2",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"body-parser": "^1.20.2",
"eslint": "^8.4.1",
"express": "^4.18.2",
"graphqlade": "^1.5.1",
"jest": "^29.5.0",
"prettier": "^3.2.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
}
}