forked from jsforce/jsforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"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.10.0",
"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": "./index",
"scripts": {
"build": "gulp build",
"build:test": "gulp build:test",
"build:all": "gulp build:all",
"doc": "jsdoc lib -d doc --recurse --lenient",
"test": "npm run test:node",
"test:all": "npm run test:node && npm run test:browser",
"test:node": "mocha --retries 2 --reporter spec --require intelli-espower-loader --exit",
"test:browser": "testem",
"prepublish": "node -e \"if(process.env.npm_package_version!==require('./lib/VERSION')){console.error('The pacakge.json version is not matching to ./lib/VERSION.js');process.exit(1)}\""
},
"directories": {
"test": "test/"
},
"files": [
"README.md",
"bower.json",
"LICENSE",
"package.json",
"bin",
"build",
"lib",
"core.js",
"index.js"
],
"engines": {
"node": ">=4.0"
},
"bin": {
"jsforce": "./bin/jsforce"
},
"dependencies": {
"base64-url": "^2.2.0",
"co-prompt": "^1.0.0",
"coffeescript": "^1.10.0",
"commander": "^2.9.0",
"csv-parse": "^4.10.1",
"csv-stringify": "^1.0.4",
"faye": "^1.2.0",
"inherits": "^2.0.1",
"lodash": "^4.17.19",
"multistream": "^2.0.5",
"opn": "^5.3.0",
"promise": "^7.1.1",
"readable-stream": "^2.1.0",
"request": "^2.72.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"archiver": "^1.3.0",
"async": "^1.5.2",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"browserify": "^16.2.2",
"bufferutil": "^4.0.0",
"envify": "^3.4.1",
"espower-loader": "^1.2.2",
"espowerify": "^1.1.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^1.12.1",
"gulp-uglify": "^3.0.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.6.3",
"mocha": "^5.2.0",
"power-assert": "^1.6.0",
"puppeteer": "^1.18.1",
"require-swapper": "^0.1.7",
"testem": "^2.8.2",
"through2": "^2.0.3",
"utf-8-validate": "^5.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browser": {
"./index": "./lib/browser/jsforce",
"./index.js": "./lib/browser/jsforce",
"./core": "./lib/browser/core",
"./core.js": "./lib/browser/core",
"request": "./lib/browser/request.js"
}
}