forked from salesforce-marketingcloud/FuelSDK-Node-Auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "fuel-auth",
"version": "3.3.0",
"description": "Node library for authenticating REST and SOAP APIs in the Salesforce Marketing Cloud (formerly ExactTarget).",
"main": "./lib/fuel-auth.js",
"scripts": {
"lint": "jshint **/*.js",
"test": "yarn run lint && mocha ./test/*.js --reporter=spec"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "[email protected]:salesforce-marketingcloud/FuelSDK-Node-Auth.git"
},
"license": "BSD-3-Clause",
"contributors": [
"Alex Vernacchia <[email protected]> (http://babble.byvernacchia.com)",
"Kelly Andrews <[email protected]>",
"Douglas Wilson <[email protected]>",
"Nathan Boyd <[email protected]>",
"David Brainer-Banker <[email protected]>"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jshint": "^2.9.5",
"mocha": "~5.2.0",
"nock": "~10.0.0",
"sinon": "~6.0.1",
"testen": "^2.2.1"
},
"dependencies": {
"lodash.merge": "^4.6.1",
"request": "~2.88.0"
}
}