-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1006 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1006 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "dotmailer",
"description": "A 3rd party dotMailer v2 REST API implementation",
"version": "3.0.1",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "James Mortemore <jamesmortemore@gmail.com>",
"contributors": [
{
"name": "John Field",
"url": "https://johnfield.github.io/"
},
{
"name": "Ian Crowther",
"url": "https://iancrowther.co.uk/"
}
],
"license": "ISC",
"scripts": {
"test": "standard && nyc mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:confuser/node-dotmailer.git"
},
"bugs": {
"url": "https://github.com/confuser/node-dotmailer/issues"
},
"keywords": [
"dotmailer",
"api",
"v2",
"rest"
],
"dependencies": {
"request": "^2.36.0"
},
"devDependencies": {
"mocha": "^5.0.1",
"nock": "^9.2.3",
"nyc": "14.1.1",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}