-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "markdown-to-mailchimp",
"version": "0.5.0",
"main": "./src/index.js",
"bin": {
"md2mc": "./bin/cli.js"
},
"repository": "[email protected]:MarcL/markdown-to-mailchimp.git",
"author": "Marc Littlemore <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"frontmatter": "^0.0.3",
"handlebars": "^4.7.7",
"mailchimp-api-v3": "^1.13.1",
"marked": "^1.0.0",
"mjml": "^4.5.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"husky": ">=1",
"jest": "^26.0.1",
"lint-staged": ">=8",
"prettier": "2.0.5"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
}
}