forked from blakmatrix/node-zendesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.06 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
{
"name": "node-zendesk",
"version": "5.0.0",
"type": "commonjs",
"description": "zendesk API client wrapper",
"keywords": [
"zendesk",
"API",
"support",
"supportdesk",
"buddha",
"radar",
"wrapper",
"help center",
"zopim",
"voice",
"reseller",
"knowledge base"
],
"homepage": "https://github.com/blakmatrix/node-zendesk",
"repository": {
"type": "git",
"url": "git://github.com/blakmatrix/node-zendesk.git"
},
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"clean:dist": "npx rimraf ./dist",
"esbuild": "npx esbuild ./src/index.js --bundle --outdir=dist --platform=node --target=node18 --minify --packages=external --format=cjs",
"build:types": "npx -p typescript tsc ./src/**/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir dist/types",
"build": "npm run clean:dist && npm run build:types && npm run esbuild",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean:dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "xo",
"lint:fix": "xo --fix",
"docs:code": "npx typedoc --out ./docs/code --plugin typedoc-plugin-markdown 'dist/**/*.ts'",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy-github-pages": "npm run build && npm run docs:code && npm run docs:build",
"release": "git push origin --follow-tags"
},
"author": "Farrin Reid <blakmatrix@gmail.com>",
"contributors": [
"Nie Xiaochen <nnabuuu@noreply.users.github.com>",
"Eriks Reks <erikzrekz@noreply.users.github.com>",
"Iconecd <iconecd@noreply.users.github.com>",
"Ignigena <Ignigena@noreply.users.github.com>",
"Eric Davis <iconecd@noreply.users.github.com>",
"Blair Anderson <blairanderson@noreply.users.github.com>",
"Jeff Zabel <jzabel@noreply.users.github.com>",
"Brian Hartvigsen <tresni@noreply.users.github.com>",
"James Greene <JamesMGreene@noreply.users.github.com>",
"Eike Thienemann-Dehde <edehde@noreply.users.github.com>",
"Roman Onufryk <onufryk@noreply.users.github.com>",
"Colin Loretz <colinloretz@noreply.users.github.com>",
"Azharuddin <gs-akhan@noreply.users.github.com>",
"Carl-Fredrik Herö <carlfredrikhero@noreply.users.github.com>",
"Oleksandr Pidlisnyi <unreadableusername@noreply.users.github.com>",
"Amal Khezami <khezamian@noreply.users.github.com>",
"genius-fx <genius-fx@noreply.users.github.com>",
"Eike Bernhardt <teefax@noreply.users.github.com>",
"genius-fx <gitter-badger@noreply.users.github.com>",
"Stuart McGrigor <stueynz@noreply.users.github.com>",
"Wade Grandoni <wadegrandoni@noreply.users.github.com>",
"Anastasi Bakolias <spasiu@noreply.users.github.com>",
"matthewschmidt <matthewschmidt.users.github.com>",
"oleksiy-turchanikov <oleksiy-turchanikov@noreply.users.github.com>",
"Shuan Wang <swang@noreply.users.github.com>",
"Bas <basdewachter@noreply.users.github.com>",
"David Kapell <dkapell@noreply.users.github.com>",
"Mathias Anderssén <Okar@noreply.users.github.com>",
"Adil H <didil@noreply.users.github.com>",
"Heriberto Madrigal <magic-madrigal@noreply.users.github.com>",
"Fred Souza <fmsouza@noreply.users.github.com>",
"Marcelo Luiz Onhate <onhate@noreply.users.github.com>"
],
"license": "MIT",
"funding": [
{
"type": "individual",
"url": "https://github.com/blakmatrix/node-zendesk?sponsor=1"
}
],
"engines": {
"node": ">= 18"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.3",
"dotenv": "^16.3.1",
"eslint-plugin-jsdoc": "^46.8.2",
"nock": "^13.3.3",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"vitepress": "^1.0.0-rc.20",
"vitepress-sidebar": "^1.18.0",
"vitest": "^0.34.3",
"vue-github-button": "^3.1.0",
"xo": "^0.56.0"
}
}