-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
142 lines (142 loc) · 4.2 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
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
{
"name": "zapier-platform-cli",
"version": "16.1.0",
"description": "The CLI for managing integrations in Zapier Developer Platform.",
"repository": "zapier/zapier-platform",
"homepage": "https://platform.zapier.com/",
"author": "Zapier Engineering <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"main": "./src/index.js",
"files": [
"/src/*.js",
"/src/commands/",
"/src/generators/",
"/src/oclif/",
"/src/bin/",
"/src/bin/run.cmd",
"/src/utils/",
"/scaffold/",
"/oclif.manifest.json"
],
"engines": {
"node": ">=18.18"
},
"scripts": {
"docs": "ZAPIER_BASE_ENDPOINT='' node scripts/docs.js",
"preversion": "git pull && yarn validate",
"prepack": "oclif manifest",
"postpack": "rm -f oclif.manifest.json",
"precommit": "yarn docs && git add docs",
"version": "yarn 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 50s --recursive src/tests --exit",
"test:debug": "cross-env NODE_ENV=test node inspect ../../node_modules/.bin/mocha -t 50s --recursive src/tests --exit",
"smoke-test": "cross-env NODE_ENV=test mocha -t 2m --recursive src/smoke-tests --exit",
"smoke-test:debug": "cross-env NODE_ENV=test node inspect ../../node_modules/.bin/mocha -t 2m --recursive src/smoke-tests --exit",
"validate-templates": "./scripts/validate-app-templates.js",
"set-template-versions": "./scripts/set-app-template-versions.js",
"validate": "yarn test && yarn smoke-test && yarn lint"
},
"dependencies": {
"@oclif/core": "4.0.34",
"@oclif/plugin-autocomplete": "3.2.11",
"@oclif/plugin-help": "6.2.18",
"@oclif/plugin-not-found": "3.2.29",
"@oclif/plugin-version": "2.2.16",
"adm-zip": "0.5.16",
"archiver": "7.0.1",
"browserify": "17.0.1",
"chrono-node": "2.7.7",
"cli-table3": "0.6.5",
"colors": "1.4.0",
"debug": "4.3.7",
"dotenv": "16.4.6",
"fs-extra": "11.2.0",
"gulp-filter": "7.0.0",
"gulp-prettier": "4.0.0",
"ignore": "5.2.4",
"inquirer": "8.2.5",
"jscodeshift": "^17.0.0",
"klaw": "4.1.0",
"lodash": "4.17.21",
"luxon": "3.5.0",
"marked": "14.1.4",
"marked-terminal": "7.2.1",
"minimatch": "9.0.3",
"node-fetch": "2.7.0",
"open": "10.1.0",
"ora": "5.4.0",
"parse-gitignore": "0.5.1",
"prettier": "3.4.1",
"read": "4.0.0",
"semver": "7.6.3",
"string-length": "4.0.2",
"through2": "4.0.2",
"tmp": "0.2.3",
"traverse": "0.6.10",
"update-notifier": "5.1.0",
"yeoman-environment": "3.19.3",
"yeoman-generator": "5.9.0"
},
"devDependencies": {
"@oclif/test": "^4.0.9",
"@types/jscodeshift": "^0.12.0",
"@types/mocha": "^10.0.9",
"chai": "^4.3.7",
"decompress": "4.2.1",
"mock-fs": "^5.2.0",
"nock": "^13.3.1",
"oclif": "^4.15.30",
"typescript": "^5.6.3",
"yamljs": "0.3.0"
},
"bin": {
"zapier": "./src/bin/run"
},
"oclif": {
"commands": "src/oclif/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."
}
}
}
}