-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "email-template-object",
"version": "0.4.0",
"description": "factory method for printing strings",
"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": "jest ./tests --passWithNoTests",
"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/eslint-parser": "7.19.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.19.6",
"@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",
"chalk": "5.1.2",
"eslint": "8.27.0",
"eslint-plugin-json": "3.1.0",
"jest": "29.3.1",
"prettier": "2.7.1",
"rollup": "3.4.0",
"rollup-plugin-includepaths": "0.2.4",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"shx": "0.3.4"
},
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false,
"release": {
"publishDir": "dist"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"easy-factory": "^1.3.0",
"lodash": "^4.17.21",
"object-assign": "^4.1.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}