-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 881 Bytes
/
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
{
"name": "sendgrid-contacts-export",
"version": "0.0.2",
"description": "The simplest way to get all your SendGrid contacts as JSON.",
"main": "index.js",
"scripts": {
"test": "standard --env mocha && NODE_ENV=test mocha --recursive",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/huned/nodejs-sendgrid-contacts-export.git"
},
"keywords": [
"sendgrid"
],
"author": "Huned Botee <[email protected]> (https://hunedbotee.com)",
"license": "MIT",
"devDependencies": {
"colors": "^1.4.0",
"mocha": "^10.2.0",
"sinon": "^9.0.2",
"standard": "^14.3.4"
},
"dependencies": {
"async-gzip-gunzip": "^1.0.1",
"bent": "^7.3.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"simple-async-sleep": "^1.0.0"
},
"standard": {
"env": {
"mocha": true
}
}
}