forked from OS-Guild/graphql-to-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 987 Bytes
/
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
{
"name": "graphql-to-mongodb",
"version": "1.6.3",
"description": "Generic run-time generation of input filter types for existing graphql types and parsing client requests to 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"
}
}