-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "mjml-multi-project",
"version": "1.0.0",
"description": "Email template workflow with MJML",
"repository": {
"type": "git",
"url": "git+https://github.com/garmeeh/mjml-multi-project.git"
},
"scripts": {
"compile": "node ./scripts/index.js --compile",
"clean-up": "node ./scripts/index.js --clean",
"create-project": "node ./scripts/index.js --createProject",
"compile-all": "node ./scripts/index.js --compileAll",
"watch": "node ./scripts/index.js --watch",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"eslint",
"git add",
"jest --bail --findRelatedTests"
]
},
"author": "Gary Meehan",
"license": "MIT",
"homepage": "https://github.com/garmeeh/mjml-multi-project#readme",
"engines": {
"node": "^8.5.0",
"yarn": "^1.3.2"
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.1",
"clear": "^0.1.0",
"commander": "^2.14.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"figlet": "^1.2.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"inquirer": "^5.1.0",
"jest": "^22.3.0",
"lint-staged": "^7.0.0",
"mjml": "^4.0.0",
"node-fetch": "^2.0.0",
"node-watch": "^0.5.7",
"prettier": "^1.11.1",
"regenerator-runtime": "^0.11.1"
},
"dependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2"
}
}