-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 3.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
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
73
74
75
76
77
78
79
80
81
82
{
"name": "@lazyemail/markdown-to-email",
"version": "3.0.2",
"description": "Translate 'Markdown' Syntax into HTML For Email Newsletters",
"main": "dist/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"dev:parseFull": "cross-env PARSE=full rollup -c -w",
"dev:parseFullRecipes": "cross-env PARSE=recipesFull rollup -c -w",
"dev:parseReactFull": "cross-env PARSE=reactFull rollup -c -w",
"dev:parseFrontHN": "cross-env PARSE=hackernnonFront rollup -c -w",
"prod:parseFull": "npm run build && cross-env PARSE=full node ./dist/bundle",
"prod:parseReactFull": "npm run build && cross-env PARSE=reactFull node ./dist/bundle",
"test:react": "npm run checkFolders && jest ./src/parserMDReact/tests",
"checkFolders": "node ./checkFolders",
"test": "npm run checkFolders && jest ./src/tests",
"test:typography": "jest --all --testPathPattern=./src/tests/typography",
"test:methods": "jest --watchAll --all --testPathPattern=./src/tests/methods",
"test:custom": "jest --watchAll --all --testPathPattern=./src/tests/custom",
"test:watch": "npm run checkFolders && jest --watch ./src/tests",
"prepare": "husky install",
"prettier:fix": "bash ./bash/prettier-fix.sh",
"lint": "eslint -c ./.eslintrc.js ./src --quiet --ignore-pattern \"./package.json\" ",
"lint:fix": "bash ./bash/lint-fix.sh"
},
"author": "atherdon, vadim9999, hirdbluebird",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.18.9",
"@babel/core": "7.18.9",
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.18.9",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-run": "2.1.0",
"babel-preset-react-app": "^10.0.1",
"eslint": "8.20.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-require-path-exists": "1.1.9",
"husky": "7.0.0",
"jest": "27.5.1",
"lint-staged": "12.4.1",
"markup-generator": "^2.7.0",
"prettier": "2.7.0",
"rollup": "2.75.6",
"rollup-plugin-node-polyfills": "0.2.1",
"source-map-support": "0.5.21"
},
"dependencies": {
"atherdon-newsletter-js-layouts-body": "^3.2.0",
"atherdon-newsletter-js-layouts-typography": "^3.0.0",
"atherdon-newsletter-react-layouts-typography": "^0.4.0",
"atherdon-old-newsletter-js-outertemplate": "^3.9.0",
"chalk": "5.0.1",
"cross-env": "7.0.3",
"lodash": "4.17.21",
"nmtg-template-mailerlite-typography": "^3.1.0",
"path-exists": "5.0.0",
"write": "2.0.0"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run lint"
]
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LLazyEmail/markdown-to-email.git"
},
"bugs": {
"url": "https://github.com/LLazyEmail/markdown-to-email/issues"
},
"homepage": "https://github.com/LLazyEmail/markdown-to-email#readme"
}