-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "graphql-to-mongodb",
"version": "1.6.5",
"description": "Generic run-time generation of input filter types for existing graphql types, and parsing of said input types into MongoDB queries",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"publish-now": "npm run build && npm publish",
"test": "ts-mocha tests/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Soluto/graphql-to-mongodb.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Soluto/graphql-to-mongodb/issues"
},
"homepage": "https://github.com/Soluto/graphql-to-mongodb#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/graphql": "^14.2.0",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"graphql": "^0.13.2",
"mocha": "^5.2.0",
"ts-mocha": "^2.0.0",
"typescript": "^3.0.3"
},
"peerDependencies": {
"graphql": "^14.2.1"
},
"keywords": [
"graphql",
"mongodb",
"generate",
"backend",
"binding"
]
}