-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "graphql-anywhere-mongodb-express",
"version": "0.3.0",
"description": "express middleware that accepts graphql requests and runs them as mongo queries",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p .",
"test": "nyc mocha",
"test:watch": "mocha -w"
},
"files": [
"dist/src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dflor003/graphql-anywhere-mongodb-express.git"
},
"keywords": [
"graphql-anywhere",
"graphql",
"express",
"middleware",
"mongodb"
],
"author": "Danil Flores <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dflor003/graphql-anywhere-mongodb-middleware-express/issues"
},
"homepage": "https://github.com/dflor003/graphql-anywhere-mongodb-express#readme",
"dependencies": {
"@types/mongodb": "^2.2.7",
"body-parser": "^1.17.2",
"debug": "^2.6.8",
"express": "^4.15.3",
"graphql": "^0.11.7",
"tslib": "~1.7.x"
},
"peerDependencies": {
"graphql-anywhere-mongodb": ">=0.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "^0.0.31",
"@types/debug": "^0.0.29",
"@types/graphql": "^0.9.3",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.2",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"install-peers": "^1.0.2",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"sinon": "^2.3.7",
"sinon-chai": "^2.11.0",
"ts-node": "^3.2.0",
"typescript": "~2.4.x"
}
}