forked from connor-baer/rich-text-to-jsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "@madebyconnor/rich-text-to-jsx",
"version": "2.1.1",
"description": "JSX renderer for the Contentful rich text field type.",
"sideEffects": false,
"main": "dist/index.cjs.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/connor-baer/rich-text-to-jsx.git",
"author": "(Connor Bär <[email protected]>)",
"license": "MIT",
"scripts": {
"start": "rollup --config --watch",
"build": "rollup --config",
"create:component": "foundry run plop component",
"prepublishOnly": "yarn test:ci && yarn size && yarn build",
"lint": "foundry run eslint --fix --quiet src/**/*.js",
"test": "jest --watch",
"test:ci": "jest --coverage",
"codecov": "codecov",
"size": "size-limit"
},
"size-limit": [
{
"path": "dist/index.cjs.js",
"limit": "4 kB"
}
],
"jest": {
"snapshotSerializers": [
"jest-serializer-html"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@sumup/foundry": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"jest": "^23.6.0",
"jest-serializer-html": "^6.0.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.7.0",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.1.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"size-limit": "^0.21.1"
},
"peerDependencies": {
"react": ">= 16.0.0"
},
"dependencies": {
"@contentful/rich-text-types": "^12.1.2"
}
}