forked from LLazyEmail/markdown-to-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.85 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
{
"name": "markdown-to-email",
"version": "1.8.5",
"description": "Translate 'Markdown' Syntax into HTML For Email Newsletters",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"parse": "npm run build && cross-env PARSE=full node ./dist/bundle",
"parseNoAdv": "npm run build && cross-env PARSE=noAdv node ./dist/bundle",
"parse:full": "npm run build && cross-env PARSE=full node ./dist/bundle",
"parseReact": "npm run build && cross-env PARSE=reactContentOnly node ./dist/bundle",
"parseReact:full": "npm run build && cross-env PARSE=reactFull node ./dist/bundle",
"parsed": "cross-env PARSE=full node ./src/index",
"emptyT": "npm run build && cross-env PARSE=plainEmpty node ./dist/bundle",
"defaultT": "npm run build && cross-env PARSE=plainTemplate node ./dist/bundle",
"test:react": "npm run checkFolders && jest ./src/parserMDReact/tests",
"lint:fix": "eslint -c ./eslintrc.js ./src --fix --ignore-pattern \"./package.json\" ",
"lint": "eslint -c ./eslintrc.js ./src --quiet --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": "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",
"fix:prettier": "prettier --write '**/*.js'"
},
"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.0",
"@rollup/plugin-node-resolve": "13.3.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",
"prettier": "2.7.0",
"rollup": "2.75.6",
"rollup-plugin-node-polyfills": "0.2.1",
"winston": "^3.8.0"
},
"dependencies": {
"atherdon-newsletter-js-layouts-body": "^3.2.0",
"atherdon-newsletter-js-layouts-typography": "^3.0.0",
"atherdon-old-newsletter-js-outertemplate": "^3.7.0",
"chalk": "5.0.1",
"cross-env": "7.0.3",
"lit-html": "^2.2.6",
"lodash": "4.17.21",
"path-exists": "5.0.0",
"write": "2.0.0"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run lint"
]
}
}