This repository was archived by the owner on Aug 5, 2020. It is now read-only.
forked from salesforce-marketingcloud/FuelSDK-Node-REST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "fuel-rest",
"version": "3.1.0",
"description": "Node library for performing REST API calls to Salesforce Marketing Cloud (formerly ExactTarget).",
"main": "./lib/fuel-rest.js",
"scripts": {
"lint": "node ./node_modules/.bin/jshint ./**/*.js",
"test": "npm run lint && node ./node_modules/.bin/mocha ./test/specs/*.js --spec=reporter",
"test:watch": "node ./node_modules/.bin/mocha ./test/specs/**/*.js --reporter=spec --watch"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "git@github.com:salesforcefuel/FuelSDK-Node-REST.git"
},
"author": "Alex Vernacchia <avernacchia@exacttarget.com> (http://babble.byvernacchia.com)",
"license": "BSD-3-Clause",
"contributors": [
"Alex Vernacchia <avernacchia@exacttarget.com> (http://babble.byvernacchia.com)",
"Nathan Boyd <nboyd@salesforce.com>"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"body-parser": "~1.18.3",
"chai": "~4.1.2",
"jshint": "^2.9.5",
"lodash": "~4.17.10",
"mocha": "~5.2.0",
"sinon": "~6.1.3"
},
"dependencies": {
"fuel-auth": "^3.1.0",
"lodash.clone": "~4.5.0",
"lodash.isplainobject": "~4.0.4",
"lodash.merge": "^4.6.1",
"requestretry": "^3.1.0"
}
}