-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "@janiscommerce/mail",
"version": "2.1.0",
"description": "A package to send emails using Janis Mailing service",
"main": "lib/index.js",
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/janis-commerce/mail.git"
},
"author": "Janis",
"license": "ISC",
"homepage": "https://github.com/janis-commerce/mail.git#readme",
"devDependencies": {
"husky": "^7.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
},
"files": [
"lib/"
],
"directories": {
"test": "tests"
},
"dependencies": {
"@janiscommerce/microservice-call": "^4.3.1"
}
}