-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "@reuters-graphics/react-smart-text",
"version": "0.2.0",
"description": "Smart text with mustache replacement and markdown features.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "https://github.com/reuters-graphics/react-smart-text",
"author": "Jon McClure <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-react": "^7.10.4",
"@reuters-graphics/eslint-config": "^0.0.2",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"eslint": "^6.8.0",
"expect.js": "^0.3.1",
"mocha": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.22.2",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.12.0"
},
"dependencies": {
"lodash": "^4.17.19",
"mustache": "^4.0.1",
"prop-types": "^15.7.2",
"react-markdown": "^4.3.1",
"really-relaxed-json": "^0.2.24",
"remark-bracketed-spans": "^3.0.0"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "mocha"
}
}