forked from danielbrodin/react-marky-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.6 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-marky-markdown",
"version": "0.2.0",
"license": "MIT",
"author": "Daniel Brodin",
"main": "dist/index.js",
"module": "dist/react-marky-markdown.esm.js",
"typings": "dist/index.d.ts",
"style": "dist/styles.css",
"files": [
"dist"
],
"keywords": [
"markdown",
"mention",
"editor"
],
"homepage": "https://github.com/danielbrodin/react-marky-markdown",
"repository": {
"type": "git",
"url": "https://github.com/danielbrodin/react-marky-markdown.git"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"release": "release-it"
},
"peerDependencies": {
"react": ">=16"
},
"release-it": {
"git": {
"commitMessage": "chore: release %s",
"tagName": "v%s"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"husky": "^3.0.9",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"release-it": "^12.4.3",
"rollup-plugin-copy-assets": "^2.0.1",
"tsdx": "^0.10.5",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
},
"dependencies": {
"react-autosize-textarea": "^7.0.0",
"resize-observer-polyfill": "^1.5.1"
}
}