forked from zapier/zapier-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 4.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "zapier-platform-cli",
"version": "18.5.0",
"description": "The CLI for managing integrations in Zapier Developer Platform.",
"repository": "zapier/zapier-platform",
"homepage": "https://platform.zapier.com/",
"author": "Zapier Engineering <contact@zapier.com>",
"license": "SEE LICENSE IN LICENSE",
"main": "./src/index.js",
"files": [
"/src/*.js",
"/src/commands/",
"/src/generators/",
"/src/oclif/",
"/src/bin/",
"/src/utils/",
"/scaffold/",
"/oclif.manifest.json"
],
"engines": {
"node": ">=18.20"
},
"scripts": {
"build-docs": "ZAPIER_BASE_ENDPOINT='' node scripts/docs.js",
"preversion": "git pull && pnpm validate",
"prepack": "oclif manifest",
"postpack": "rimraf oclif.manifest.json",
"precommit": "pnpm build-docs && git add docs",
"version": "pnpm build-docs && git add docs/*",
"postversion": "git push && git push --tags",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "cross-env NODE_ENV=test mocha -t 200s --recursive src/tests --exit",
"test:debug": "cross-env NODE_ENV=test node inspect ../../node_modules/.bin/mocha -t 200s --recursive src/tests --exit",
"smoke-test": "cross-env NODE_ENV=test mocha -t 6m --recursive src/smoke-tests --exit",
"smoke-test:debug": "cross-env NODE_ENV=test node inspect ../../node_modules/.bin/mocha -t 6m --recursive src/smoke-tests --exit",
"validate-templates": "./scripts/validate-app-templates.js",
"set-template-versions": "./scripts/set-app-template-versions.js",
"validate": "pnpm test && pnpm smoke-test && pnpm lint"
},
"dependencies": {
"@oclif/core": "4.5.2",
"@oclif/plugin-autocomplete": "3.2.34",
"@oclif/plugin-help": "6.2.32",
"@oclif/plugin-not-found": "3.2.62",
"@oclif/plugin-version": "2.2.32",
"adm-zip": "0.5.16",
"archiver": "7.0.1",
"chrono-node": "2.8.3",
"cli-table3": "0.6.5",
"colors": "1.4.0",
"debug": "4.4.1",
"decompress-unzip": "4.0.1",
"dotenv": "17.2.1",
"esbuild": "0.25.8",
"fs-extra": "11.3.1",
"gulp-filter": "7.0.0",
"gulp-prettier": "5.0.0",
"ignore": "7.0.5",
"inquirer": "8.2.5",
"jscodeshift": "^17.3.0",
"lodash": "4.18.1",
"luxon": "3.7.1",
"marked": "15.0.12",
"marked-terminal": "7.3.0",
"open": "10.2.0",
"ora": "5.4.0",
"parse-gitignore": "0.5.1",
"prettier": "3.6.2",
"read": "4.1.0",
"semver": "7.7.2",
"string-length": "4.0.2",
"through2": "4.0.2",
"tmp": "0.2.5",
"traverse": "0.6.11",
"update-notifier": "7.3.1",
"yeoman-environment": "4.4.3",
"yeoman-generator": "7.5.1"
},
"devDependencies": {
"@oclif/test": "^4.1.13",
"@types/jscodeshift": "^0.12.0",
"@types/mocha": "^10.0.9",
"chai": "^4.3.7",
"mock-fs": "^5.5.0",
"nock": "^14.0.7",
"oclif": "^4.22.5",
"rimraf": "^5.0.10",
"typescript": "^5.8.3",
"yamljs": "0.3.0"
},
"bin": {
"zapier": "./src/bin/run",
"zapier-platform": "./src/bin/run"
},
"oclif": {
"commands": {
"strategy": "explicit",
"target": "./src/oclif/oCommands",
"identifier": "COMMANDS"
},
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"bin": "zapier",
"dirname": "zapier",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-version"
],
"hooks": {
"init": [
"./src/oclif/hooks/checkValidNodeVersion",
"./src/oclif/hooks/deprecated",
"./src/oclif/hooks/getAppRegistrationFieldChoices",
"./src/oclif/hooks/renderMarkdownHelp",
"./src/oclif/hooks/updateNotifier",
"./src/oclif/hooks/versionInfo"
]
},
"topics": {
"cache": {
"description": "Interact with your integration's cache data."
},
"delete": {
"description": "Delete your entire integration or a specific integration version."
},
"env": {
"description": "Interact with your integration's environment."
},
"team": {
"description": "Add, remove, or get team members of your integration."
},
"users": {
"description": "Add, remove, or get invited users of your integration."
}
}
}
}