forked from jsforce/jsforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.94 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"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.4.1",
"repository": {
"type": "git",
"url": "git://github.com/jsforce/jsforce.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jsforce/jsforce/raw/master/LICENSE"
}
],
"main": "./lib/jsforce",
"scripts": {
"test": "./test/bin/run-test"
},
"directories": {
"test": "test/"
},
"files": [
"README.md",
"bower.json",
"Gruntfile.js",
"LICENSE",
"package.json",
"bin",
"build",
"lib",
"test"
],
"engines": {
"node": ">=0.10.0"
},
"bin": {
"jsforce": "./bin/jsforce"
},
"dependencies": {
"co-prompt": "^1.0.0",
"coffee-script": "^1.8.0",
"commander": "^2.6.0",
"faye": "^1.1.0",
"inherits": "^2.0.1",
"open": "0.0.5",
"promise": "^6.1.0",
"readable-stream": "^1.1.13",
"request": "^2.51.0",
"through2": "^1.1.1",
"underscore": "^1.7.0",
"xml2js": "^0.4.4"
},
"devDependencies": {
"async": "^0.9.0",
"browserify": "^5.11.0",
"dotenv": "^0.4.0",
"envfile": "^1.0.0",
"espower-loader": "^0.7.1",
"espowerify": "^0.7.1",
"grunt": "^0.4.5",
"grunt-browserify": "^3.0.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-extract-required": "0.0.6",
"grunt-jsdoc": "^0.5.6",
"grunt-string-replace": "^1.0.0",
"intelli-espower-loader": "^0.2.0",
"mocha": "^1.21.4",
"power-assert": "^0.7.2",
"require-swapper": "^0.1.2",
"webdriverio": "^2.4.3"
},
"browser": {
"request": "./lib/browser/request.js"
}
}