-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "graphql-compose-pagination",
"version": "0.0.0-semantically-released",
"description": "Plugin for `graphql-compose` which provide a pagination resolver for types.",
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-pagination.git"
},
"keywords": [
"graphql",
"graphql-compose",
"pagination"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-pagination/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-pagination",
"peerDependencies": {
"graphql-compose": "^7.15.0 || ^8.0.0"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.25.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.0",
"graphql": "15.5.0",
"graphql-compose": "8.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"semantic-release": "17.4.2",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "npm run coverage && npm run lint",
"link": "yarn build && yarn link graphql-compose && yarn link",
"unlink": "rimraf node_modules && yarn install",
"semantic-release": "semantic-release"
}
}