-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "javascript-email-templates",
"version": "0.1.1",
"description": "Exporting few simple email templates that can be used as installed package",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.iife.js",
"scripts": {
"bundle": "rollup -c",
"dev": "rollup -c -w",
"build": "npm run clean && npm run bundle",
"build:babel": "babel src -d dist",
"prepublish": "npm run clean && npm run build",
"test": "npm run test",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"lint:prettier": "prettier --write src/",
"lint": "eslint --ext .js . --ignore-path ./.eslintignore --resolve-plugins-relative-to .",
"lint:fix": "eslint --fix . --ignore-path ./.eslintignore --resolve-plugins-relative-to ."
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.20.2",
"@rollup/plugin-babel": "6.0.2",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"babel-eslint": "10.1.0",
"eslint": "8.26.0",
"eslint-plugin-json": "3.1.0",
"prettier": "2.7.1",
"rollup": "3.3.0",
"rollup-plugin-includepaths": "0.2.4",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-polyfills": "0.2.1",
"shx": "0.3.4"
},
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false,
"release": {
"publishDir": "dist"
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}