-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
39 lines (39 loc) · 872 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
36
37
38
39
{
"name": "relay-mongodb-connection",
"version": "2.1.0",
"description": "MongoDB connection for Relay",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mikberg/relay-mongodb-connection.git"
},
"scripts": {
"lint": "eslint src",
"test": "ava test/*.test.js --serial",
"test-cov": "nyc ava --serial",
"test-travis": "npm run lint && npm run test-cov"
},
"keywords": [
"relay",
"graphql",
"mongodb",
"mongoose"
],
"author": "Mikael Berg",
"contributors": [
{
"name": "papigers"
}
],
"license": "MIT",
"devDependencies": {
"ava": "^0.15.2",
"coveralls": "^2.11.4",
"eslint": "^3.2.0",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"mongodb": "^2.0.48",
"mongoose": "^4.5.5",
"nyc": "^7.1.0"
}
}