-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 868 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 868 Bytes
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
{
"name": "freshdesk",
"version": "1.1.0",
"description": "A nodejs sdk for the Freshdesk API. Some major routes are implemented, but this SDK exposes the basic GET, POST, PUT, DELETE routes so that you can fill in the gaps in your apps for the unimplemented routes, and send a pull request to complete it!",
"main": "index.js",
"scripts": {
"prepublish": "gulp build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/kumarharsh/node-freshdesk.git"
},
"homepage": "http://github.com/kumarharsh/node-freshdesk",
"author": {
"name": "Kumar Harsh",
"email": "khs@playlyfe.com"
},
"dependencies": {
"request": "^2.53.0"
},
"devDependencies": {
"coffee-script": "^1.9.0",
"gulp": "^3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-plumber": "^0.6.6",
"gulp-util": "^3.0.3"
}
}