-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "node-zoho",
"version": "0.0.39",
"description": "Simple Zoho integrations for Node.js",
"keywords": [
"zoho",
"node"
],
"main": "build/node-zoho",
"private": false,
"homepage": "https://github.com/ahmader/node-zoho",
"bugs": "https://github.com/ahmader/node-zoho/issues",
"license": "MIT",
"author": "Ahmader <[email protected]>",
"contributors": [
"Picatic E-Tickets Inc. <[email protected]>"
],
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ahmader/node-zoho.git"
},
"dependencies": {
"async": "^2.6.0",
"coffeescript": "^2.2.1",
"content-disposition": "^0.5.2",
"request": "^2.83.0",
"underscore": "^1.8.3",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-plugin-coffeescript": "^0.2.1",
"grunt": "^1.0.2",
"grunt-bump": "^0.8.0",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-watch": "^1.0.0",
"grunt-jasmine-bundle": "^0.4.0",
"grunt-jasmine-node": "^0.3.1",
"grunt-shrinkwrap": "^1.1.1",
"gruntify-eslint": "^4.0.0"
},
"scripts": {
"prepare": "coffee --bare --compile --output build lib",
"lint": "eslint lib/ --ext .coffee",
"test": "grunt travis-ci"
}
}