-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (69 loc) · 1.66 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
66
67
68
69
{
"name": "@nteract/markdown",
"version": "4.6.1",
"description": "Markdown/MathJax renderer for nteract",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"nteractDesktop": "src/index.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": "https://github.com/nteract/markdown",
"keywords": [
"markdown",
"mathjax"
],
"author": "Trevor Lyon <github.com/tlyon3>",
"license": "BSD-3-Clause",
"dependencies": {
"@nteract/mathjax": "^4.0.11",
"@nteract/presentational-components": "^3.3.11",
"react-markdown": "^4.0.0"
},
"peerDependencies": {
"react": "^16.11.0",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@nteract/commutable": "^7.2.9",
"@semantic-release/npm": "^7.1.3",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.23",
"conventional-changelog-conventionalcommits": "^4.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"jest": "^25.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"remark-parse": "^8.0.0",
"remark-stringify": "^8.0.0",
"semantic-release": "^17.4.3",
"styled-components": "^5.0.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"unified": "^9.0.0",
"unist-builder": "^2.0.3",
"unist-util-visit": "^2.0.2"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}