-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.52 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
{
"name": "zapier-graphql",
"version": "2.1.0",
"description": "A GraphQL library that work's with Zapier CLI platform.",
"type": "commonjs",
"main": "./lib/index.js",
"engines": {
"node": ">=18.3.0"
},
"bin": {
"zapier-graphql": "bin/zapier-graphql"
},
"exports": {
".": "./lib/index.js",
"./lib/utils": "./lib/utils/index.js",
"./package.json": "./package.json",
"./.zapiergraphql.sample": "./etc/.zapiergraphql.sample",
"./bin/zapier-graphql": "./bin/zapier-graphql"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"inflection": "^3.0.0",
"inquirer": "^8.2.6",
"json5": "^2.2.3",
"undici": "5.14.0",
"uuid": "^9.0.1",
"zapier-platform-cli": "15.3.0",
"zapier-platform-core": "15.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.4",
"jest": "^29.7.0",
"memfs": "^4.6.0",
"unionfs": "^4.5.1"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rentpost/zapier-graphql.git"
},
"homepage": "https://github.com/rentpost/zapier-graphql",
"author": "Jacob Thomason; RentPost, Inc.",
"license": "Apache-2.0",
"keywords": [
"zapier",
"graphql",
"zapier-platform",
"zapier-cli",
"api"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/rentpost/zapier-graphql/issues"
},
"directories": {
"lib": "lib"
}
}