generated from tinovyatkin/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tag-mjml",
"description": "Tagged template string function that converts MJML to HTML string",
"license": "MIT",
"author": "Konstantin Vyatkin <tino@vtkn.io>",
"homepage": "https://github.com/tinovyatkin/tag-mjml#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/tag-mjml.git"
},
"bugs": {
"url": "https://github.com/tinovyatkin/tag-mjml/issues"
},
"version": "1.0.11",
"main": "dist/index.js",
"files": [
"dist/index.d.ts"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext=ts ./src",
"prepublishOnly": "jest && tsc",
"test": "jest"
},
"dependencies": {
"ansi-to-html": "0.7.2",
"common-tags": "1.8.0",
"mjml": "4.7.1"
},
"devDependencies": {
"@types/common-tags": "1.8.1",
"@types/jest": "latest",
"@types/mjml": "4.7.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chalk": "4.1.2",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"husky": "latest",
"jest": "next",
"jest-circus": "26.6.3",
"jest-serializer-html": "7.1.0",
"lint-staged": "latest",
"npm-package-json-lint": "latest",
"prettier": "latest",
"prettier-package-json": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"keywords": [
"common-tags",
"dynamic",
"email",
"es2015-tag",
"es6",
"es6-tags",
"html",
"literal",
"mjml",
"responsive",
"tag",
"tagged",
"template",
"template-tag",
"typescript"
],
"engines": {
"node": ">= 8",
"yarn": ">=1.19"
}
}