This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
forked from jsforce/jsforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
63
64
65
{
"author": "Shinichi Tomita <[email protected]>",
"name": "jsforce",
"description": "Salesforce API Library for JavaScript",
"keywords": [
"salesforce",
"salesforce.com",
"sfdc",
"force.com",
"database.com"
],
"homepage": "http://github.com/jsforce/jsforce",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git://github.com/jsforce/jsforce.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jsforce/jsforce/raw/master/LICENSE"
}
],
"main": "./lib/jsforce",
"scripts": {
"test": "mocha test/*.test.js --reporter spec --require intelli-espower-loader"
},
"directories": {
"test": "test/"
},
"engines": {
"node": ">=0.8.0"
},
"bin": {
"jsforce": "./bin/jsforce"
},
"dependencies": {
"async": "0.1.x",
"coffee-script": "1.6.x",
"commander": "2.1.x",
"co-prompt": "1.0.x",
"faye": "1.0.x",
"open": "0.0.4",
"q": "0.9.x",
"readable-stream": "1.1.x",
"request": "2.34.x",
"underscore": "1.4.x",
"xml2js": "0.4.x"
},
"devDependencies": {
"grunt": "0.4.x",
"grunt-browserify": "1.3.x",
"grunt-contrib-clean": "0.5.x",
"grunt-contrib-watch": "0.5.x",
"grunt-contrib-uglify": "0.3.x",
"grunt-jsdoc": "0.5.x",
"envfile": "1.0.x",
"mocha": "1.15.x",
"socket.io": "0.9.6",
"node-phantom": "0.2.x",
"power-assert": "0.6.x",
"intelli-espower-loader": "0.0.7",
"espowerify": "0.6.x"
}
}