-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.17 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
70
71
72
73
74
75
76
77
{
"name": "markdownz",
"version": "9.1.7",
"description": "Markdown viewer and editor for the Zooniverse",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"sideEffects": false,
"files": [
"lib/*"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "babel src --out-dir lib/cjs",
"build:esm": "BABEL_ENV=es6 babel src --out-dir lib/esm",
"lint": "eslint src",
"test": "mocha --require @babel/register test/helper.mjs test/*-test.js*",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zooniverse/markdownz.git"
},
"keywords": [
"markdown",
"zooniverse"
],
"author": "The Zooniverse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zooniverse/markdownz/issues"
},
"homepage": "https://github.com/zooniverse/markdownz#readme",
"peerDependencies": {
"react": ">= 16.14",
"react-dom": ">= 16.14"
},
"devDependencies": {
"@babel/cli": "~7.23.0",
"@babel/core": "~7.23.0",
"@babel/preset-env": "~7.23.2",
"@babel/preset-react": "~7.23.3",
"@babel/register": "~7.23.7",
"chai": "~5.0.0",
"chai-spies": "~1.1.0",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.7",
"eslint": "~8.56.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-react": "~7.33.0",
"jsdom": "~23.2.0",
"mocha": "~10.2.0",
"prop-types": "~15.8.1",
"react": "~16.14",
"react-dom": "~16.14",
"react-test-renderer": "~16.14"
},
"dependencies": {
"@twemoji/api": "~15.0.3",
"isomorphic-dompurify": "~2.2.0",
"markdown-it": "~14.0.0",
"markdown-it-anchor": "~8.6.5",
"markdown-it-container": "~4.0.0",
"markdown-it-emoji": "~3.0.0",
"markdown-it-footnote": "~4.0.0",
"markdown-it-imsize": "~2.0.1",
"markdown-it-sub": "~2.0.0",
"markdown-it-sup": "~2.0.0",
"markdown-it-table-of-contents": "~0.6.0",
"markdown-it-video": "~0.6.3",
"mime": "~3.0.0",
"rehype": "~11.0.0",
"rehype-react": "~6.2.1"
}
}