forked from stomita/node-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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
{
"author": "Shinichi Tomita <shinichi.tomita@gmail.com>",
"name": "node-salesforce",
"description": "Salesforce API Connection Library for Node.js Applications",
"keywords": [
"salesforce",
"salesforce.com",
"sfdc",
"force.com",
"database.com"
],
"homepage": "http://github.com/stomita/node-salesforce",
"version": "0.6.3",
"repository": {
"type": "git",
"url": "git://github.com/stomita/node-salesforce.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/stomita/node-salesforce/raw/master/LICENSE"
}
],
"main": "./lib/salesforce",
"scripts": {
"test": "vows test/*.test.js --spec"
},
"engines": {
"node": ">=0.4.0"
},
"bin": {
"sfjs": "./bin/sfjs",
"sfcoffee": "./bin/sfcoffee"
},
"dependencies": {
"async": "0.1.x",
"request": "2.12.x",
"underscore": "1.4.x",
"xml2json": "0.3.2",
"faye": "0.8.x",
"q": "0.9.x"
},
"devDependencies": {
"express": "2.5.x",
"vows": "0.7.x",
"zombie": "1.4.1"
}
}