-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "epic-remark",
"version": "1.0.1",
"description": "Epic Remark is an all-in-one markdown to HTML processor built on top of remark",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prep": "yarn prettier . --write && yarn build",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"example": "node ./scripts/runExample.js"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"keywords": [
"remark",
"remark-plugin"
],
"author": "sandypockets",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sandypockets/epic-remark.git"
},
"bugs": {
"url": "https://github.com/sandypockets/epic-remark/issues"
},
"homepage": "https://github.com/sandypockets/epic-remark#readme",
"dependencies": {
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-rehype": "^11.0.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"jest": "^29.7.0",
"prettier": "3.1.1",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}