-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "markdown-regex",
"version": "1.2.0",
"description": "set of constants that can help you to parse markdown content",
"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": "NODE_OPTIONS=--experimental-vm-modules npx 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.20.7",
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.20.11",
"@babel/preset-env": "7.20.2",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "23.0.5",
"@rollup/plugin-node-resolve": "15.0.1",
"chalk": "5.2.0",
"eslint": "8.34.0",
"eslint-plugin-json": "3.1.0",
"fs": "0.0.1-security",
"jest": "29.4.2",
"prettier": "2.8.3",
"rollup": "3.15.0",
"rollup-plugin-includepaths": "0.2.4",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-polyfill-node": "0.11.0",
"semantic-release": "20.1.0",
"semver": "7.3.8",
"shx": "0.3.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"os": "0.1.2"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/atherdon/markdown-regex"
},
"bugs": "https://github.com/atherdon/markdown-regex/issues",
"author": "Arthur Tkachenko",
"license": "MIT",
"private": false,
"release": {
"publishDir": "dist"
}
}