-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1 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
39
40
41
42
43
44
45
{
"name": "unisender",
"version": "1.1.1",
"readmeFilename": "README.md",
"description": "Promise-based wrapper for unisender api",
"keywords": [
"unisender",
"api",
"email",
"promise",
"wrapper"
],
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/.bin/_mocha --dir ./coverage --report lcov -- -R spec --recursive ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/s0ph1e/node-unisender.git"
},
"author": "s0ph1e",
"license": "MIT",
"dependencies": {
"bluebird": "^3.0.6",
"lodash": "^4.17.5",
"request": "^2.81.0"
},
"bugs": {
"url": "https://github.com/s0ph1e/node-unisender/issues"
},
"homepage": "https://github.com/s0ph1e/node-unisender",
"devDependencies": {
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.1",
"mocha": "^6.1.3",
"nock": "^10.0.0",
"proxyquire": "^2.0.1",
"sinon": "^7.3.1"
},
"files": [
"index.js",
"src"
]
}