forked from LLazyEmail/markdown-to-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.15 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
{
"name": "markdown-to-email",
"version": "1.8.5",
"description": "Translate 'Markdown' Syntax into HTML For Email Newsletters",
"main": "index.js",
"scripts": {
"parse": "npm run checkFolders && cross-env PARSE=full node ./src/parser",
"parseNoAdv": "npm run checkFolders && cross-env PARSE=noAdv node ./src/parser",
"parse:full": "npm run checkFolders && cross-env PARSE=full node ./src/parser",
"parseReact": "npm run checkFolders && cross-env PARSE=reactContentOnly node ./src/parser",
"parseReact:full": "npm run checkFolders && cross-env PARSE=reactFull node ./src/parser",
"emptyT": "npm run checkFolders && cross-env PARSE=plainEmpty node ./src/parser",
"defaultT": "npm run checkFolders && cross-env PARSE=plainTemplate node ./src/parser",
"test:react": "npm run checkFolders && jest ./src/parserMDReact/tests",
"lint:fix": "eslint ./src --fix --ignore-pattern \"./package.json\" ",
"build:small": "npm run checkFolders && node ./src/index.js",
"checkFolders": "node ./checkFolders",
"test": "npm run checkFolders && jest ./src/tests",
"test:typography": "npm run ./src/tests/typography",
"test:methods": "npm run ./src/tests/methods",
"test:custom": "npm run ./src/tests/custom",
"test:watch": "npm run checkFolders && jest --watch ./src/tests"
},
"author": "hirdbluebird, atherdon, vadim9999",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/eslint-parser": "7.17.0",
"eslint": "8.8.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-require-path-exists": "1.1.9",
"jest": "27.4.7"
},
"dependencies": {
"atherdon-callbacks": "^1.10.0",
"atherdon-newsletter-html-replacer": "^0.4.0",
"atherdon-newsletter-js-layouts": "^1.5.1",
"atherdon-newsletter-react": "^1.0.11",
"atherdon-newsletter-react-replacer": "^0.4.0",
"atherdon-old-newsletter-js-outertemplate": "^2.4.0",
"cross-env": "^7.0.3",
"markup-generator": "^0.4.0",
"path-exists": "^5.0.0"
},
"jest": {
"moduleNameMapper": {
"@root(.*)$": "<rootDir>/src/$1"
}
}
}