forked from arjunkomath/node-freshdesk-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "freshdesk-api",
"version": "2.5.0",
"description": "Node wrapper for Freshdesk v2 API",
"main": "./lib/client",
"scripts": {
"test": "`npm bin`/mocha",
"release": "node ./node_modules/gulp/bin/gulp.js && git push origin master --follow-tags",
"lint": "`npm bin`/eslint ./",
"coverage": "`npm bin`/istanbul cover `npm bin`/_mocha -- --reporter min",
"docs": "`npm bin`/jsdoc -c .jsdoc.rc"
},
"keywords": [
"freshdesk",
"v1",
"v2",
"api",
"node",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/arjunkomath/node-freshdesk-api"
},
"author": "Arjun Komath <arjunkomath@gmail.com>",
"contributors": [
{
"name": "Koryukov Maksim",
"email": "maxkoryukov@gmail.com",
"url": "https://www.npmjs.com/~maxkoryukov"
},
{
"name": "Kumar Harsh",
"email": "khs@playlyfe.com",
"url": "https://github.com/kumarharsh"
}
],
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"homepage": "http://arjunkomath.github.io/node-freshdesk-api/",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"docdash": "^0.4.0",
"eslint": "^4.19.1",
"eslint-config-volebo": "^2.3.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.1.1",
"nock": "^9.2.5"
},
"dependencies": {
"debug": "^3.1.0",
"request": "^2.85.0"
},
"publishConfig": {
"tag": "latest",
"access": "public"
}
}