-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
66 lines (66 loc) · 1.51 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": "freshdesk-api",
"version": "3.1.0",
"description": "Node wrapper for Freshdesk v2 API",
"main": "./lib/client",
"types": "./dist/client.d.ts",
"scripts": {
"test": "mocha",
"release": "node ./node_modules/gulp/bin/gulp.js && git push origin master --follow-tags",
"lint": "eslint ./",
"coverage": "`npm bin`/nyc `npm bin`/_mocha",
"docs": "`npm bin`/jsdoc -c .jsdoc.rc",
"prepare": "tsc"
},
"keywords": [
"freshdesk",
"v1",
"v2",
"api",
"node",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/arjunkomath/node-freshdesk-api"
},
"author": "Arjun Komath <[email protected]>",
"contributors": [
{
"name": "Koryukov Maksim",
"email": "[email protected]",
"url": "https://www.npmjs.com/~maxkoryukov"
},
{
"name": "Kumar Harsh",
"email": "[email protected]",
"url": "https://github.com/kumarharsh"
}
],
"engines": {
"node": ">=12.18",
"npm": ">=3.0.0"
},
"homepage": "http://arjunkomath.github.io/node-freshdesk-api/",
"license": "MIT",
"devDependencies": {
"fastify-multipart": "^5.4.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"fastify": "^3.29.1",
"jsdoc": "^3.6.10",
"mocha": "^10.0.0",
"nock": "^13.2.6",
"nyc": "^15.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"debug": "^4.3.3",
"form-data": "^4.0.0",
"undici": "^5.6.0"
},
"publishConfig": {
"tag": "latest",
"access": "public"
}
}