forked from HGData/mk-node-marketo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 760 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 760 Bytes
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
{
"name": "node-marketo-rest",
"version": "0.12.2",
"description": "marketo rest client",
"repository": {
"type": "git",
"url": "https://github.com/MadKudu/node-marketo/"
},
"engines": {
"node": ">=14.17.6"
},
"scripts": {
"test": "mocha test/*.test.js",
"format:check": "prettier --check .",
"format": "prettier --write .",
"testRecord": "REPLAY=record mocha -t 10000 test/*test.js --exit"
},
"dependencies": {
"axios": "^1.6.7",
"backoff": "^2.5.0",
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nock": "^13.4.0",
"prettier": "2.8.8",
"replay": "^2.4.0",
"rewire": "^6.0.0"
}
}