-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
55
{
"name": "markdown-it-marked",
"version": "0.3.3",
"description": "Plugin for markdown-it for marking substrings within text",
"license": "Apache-2.0",
"main": "dist/markdown-it-marked.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"exports": {
"require": "./dist/markdown-it-marked.js",
"default": "./src/index.js"
},
"author": "Martin Packman <martin.packman@visual-meaning.com>",
"repository": "github:VisualMeaning/markdown-it-marked",
"bugs": "https://github.com/VisualMeaning/markdown-it-marked/issues",
"homepage": "https://github.com/VisualMeaning/markdown-it-marked#readme",
"jest": {
"moduleNameMapper": {
"markdown-it-marked": "<rootDir>/src/index.js"
},
"testRegex": "test/.*\\.js$"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"marked",
"highlight",
"mark"
],
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint .",
"postpublish": "git push --atomic origin master v$npm_package_version",
"postversion": "npm publish",
"prepare": "rollup --config",
"pretest": "eslint .",
"preversion": "npm test",
"test": "jest"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.22.15",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@babel/eslint-parser": "^7.22.15",
"eslint": "^8.50.0",
"eslint-plugin-jest": "^27.4.0",
"jest": "^29.7.0",
"markdown-it": "^13.0.1",
"rollup": "^3.29.3"
}
}