-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@wq/markdown",
"version": "2.0.0",
"description": "Markdown and syntax highlighting for @wq/app",
"type": "module",
"main": "src/index.js",
"unpkg": "markdown.js",
"files": [
"markdown.js",
"markdown.js.map",
"src/"
],
"scripts": {
"test": "jest --verbose",
"build": "rollup -c",
"precise-commits": "precise-commits",
"prettier": "prettier --write *.js{,on} src/",
"lint": "eslint *.config.js src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wq/markdown.git"
},
"keywords": [
"wq",
"markdown",
"highlightjs"
],
"author": "S. Andrew Sheppard",
"license": "MIT",
"bugs": {
"url": "https://github.com/wq/markdown/issues"
},
"homepage": "https://github.com/wq/markdown",
"dependencies": {
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@wq/rollup-plugin": "^2.0.0",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-analyze": "^0.3.0"
},
"prettier": {
"tabWidth": 4
}
}