-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "zaqar-renderer-mustache",
"version": "1.0.4",
"description": "Mustache renderer for Zaqar email microservice",
"main": "dist/index.js",
"scripts": {
"pretest": "npm run build",
"prepare": "rm -rf dist && npm test",
"test": "mocha ./tests",
"build": "tsc",
"coverage": "nyc mocha --timeout 10000 --require source-map-support/register --recursive tests/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khaosdoctor/zaqar-renderer-mustache.git"
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"**/*.d.ts",
"dist/**/*.*",
"coverage"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
},
"keywords": [
"zaqar",
"email",
"mustache",
"renderer",
"microservice"
],
"author": "Lucas Santos <hello@lsantos.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/khaosdoctor/zaqar-renderer-mustache/issues"
},
"homepage": "https://github.com/khaosdoctor/zaqar-renderer-mustache#readme",
"devDependencies": {
"@types/mustache": "^0.8.32",
"@types/node": "^12.12.12",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"source-map-support": "^0.5.16",
"typescript": "^3.7.2"
},
"dependencies": {
"mustache": "^3.1.0"
},
"files": [
"dist"
],
"private": false
}