This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.86 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
65
66
67
68
{
"name": "@nicky-lenaers/mogr",
"version": "1.6.0",
"description": "MoGr dynamically maps GraphQL AST's to Mongoose Query Projection and/or Population and provides GraphQL Cursor Pagination.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs": "docsify servce docs",
"docsify": "docsify",
"docs:ts": "typedoc --out ./documentation",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"release": "standard-version --tag-prefix=\"\"",
"test": "jest --coverage",
"test:ci": "npm run test && codecov",
"test:watch": "npm run test -- --watchAll --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicky-lenaers/mogr.git"
},
"keywords": [
"mogr",
"graphql",
"mongoose",
"query",
"projection",
"population",
"pagination"
],
"files": [
"lib/**/*"
],
"private": false,
"author": "Nicky Lenaers <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicky-lenaers/mogr/issues"
},
"homepage": "https://github.com/nicky-lenaers/mogr#readme",
"peerDependencies": {
"graphql": "^14.0.0",
"mongoose": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-angular": "^7.5.0",
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.9",
"@types/mongoose": "^5.3.20",
"@types/webpack": "^4.4.25",
"codecov": "^3.2.0",
"docsify-cli": "^4.3.0",
"graphql": "^14.1.1",
"graphql-tools": "^4.0.4",
"husky": "^1.3.1",
"jest": "^24.1.0",
"mongoose": "^5.4.11",
"standard-version": "^5.0.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
}
}