forked from florianholzapfel/node-kayako
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1018 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1018 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "node-kayako",
"description": "access to the kayako helpdesk api",
"version": "0.1.1",
"author": {
"name": "Florian Holzapfel",
"email": "flo.holzapfel@gmail.com"
},
"homepage": "https://github.com/florianholzapfel/node-kayako",
"licenses": [
{
"type": "The MIT License (MIT)",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"pretest": "./node_modules/.bin/jshint index.js lib test",
"test": "./node_modules/.bin/mocha -R spec ./test --recursive --slow 2s --timeout 5s"
},
"repository": {
"type": "git",
"url": "git://github.com/florianholzapfel/node-kayako.git"
},
"main": ".",
"engines": {
"node": "*"
},
"dependencies": {
"request": "~2.33",
"xml2js": "~0.4",
"underscore": "1.5.x"
},
"devDependencies": {
"jshint": "~2.4",
"mocha": "~1",
"chai": "~1.9",
"blanket": "~1.1"
},
"readmeFilename": "README.md",
"config": {
"blanket": {
"pattern": "node-kayako/lib/"
}
}
}