forked from fmoliveira/mailerlite-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "mailerlite",
"version": "0.4.0",
"description": "Node.js wrapper for MailerLite API.",
"main": "index.js",
"scripts": {
"make:docs": "jsdoc -c jsdoc.json . -R README.md -d .docs",
"deploy:docs": "bash deploy.sh",
"test": "npm run test:coveralls && npm run test:lint",
"test:lint": "standard",
"test:mocha": "mocha --timeout 10000",
"test:istanbul": "istanbul cover _mocha --report lcovonly -- -R spec --timeout 10000",
"test:coveralls": "npm run test:istanbul && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmoliveira/mailerlite-sdk-nodejs.git"
},
"keywords": [
"mailerlite",
"email",
"marketing"
],
"author": "Filipe Oliveira <contato@fmoliveira.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fmoliveira/mailerlite-sdk-nodejs/issues"
},
"homepage": "https://github.com/fmoliveira/mailerlite-sdk-nodejs#readme",
"devDependencies": {
"coveralls": "^2.11.8",
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"mocha": "^2.3.3",
"standard": "^6.0.7"
},
"dependencies": {
"request": "^2.65.0"
}
}