forked from FleekHQ/apollo-cursor-pagination
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 KB
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
{
"name": "@pocket-tools/apollo-cursor-pagination",
"version": "1.1.1",
"description": "Relay's Connection implementation for Apollo Server GraphQL library with primary key support for cursor generation.",
"keywords": [
"apollo",
"pagination"
],
"main": "dist/index.js",
"author": "Daniel Merrill <daniel@terminal.co>",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel src --out-dir dist"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.0",
"regenerator-runtime": "^0.12.1",
"semantic-release": "^19.0.2"
},
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/Pocket/apollo-cursor-pagination/issues"
},
"homepage": "https://github.com/Pocket/apollo-cursor-pagination#readme",
"publishConfig": {
"cache": "~/.npm",
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"prepareCmd": "echo ${nextRelease.version} > .version"
}
]
]
},
"repository": {
"type": "git",
"url": "git@github.com:Pocket/apollo-cursor-pagination.git"
}
}