-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
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
{
"name": "atherdon-newsletter-react-layouts-typography",
"version": "0.4.0",
"description": "im trying to separate part of our code",
"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",
"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 .",
"lint2:fix": "eslint --fix . --ignore-path ./.eslintignore --resolve-plugins-relative-to ."
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.19.4",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "15.3.1",
"eslint": "8.26.0",
"eslint-plugin-json": "3.1.0",
"jest": "29.2.2",
"prettier": "2.7.1",
"rollup": "3.7.4",
"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"
},
"jest": {
"moduleNameMapper": {
"@root(.*)$": "<rootDir>/src/$1"
}
}
}