-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.24 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
77
{
"name": "@contentstack/json-rte-serializer",
"version": "3.1.0",
"description": "This Package converts Html Document to Json and vice-versa.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build:cjs": "esbuild src/index.tsx --bundle --outdir=lib --platform=node --minify",
"build:esm": "esbuild src/index.tsx --bundle --outdir=lib --format=esm --out-extension:.js=.mjs --minify",
"build": "npm run build:cjs && npm run build:esm && tsc --emitDeclarationOnly --outDir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/contentstack/json-rte-serializer.git"
},
"keywords": [
"html-to-json",
"slate-html"
],
"author": "Contentstack",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentstack/json-rte-serializer/issues"
},
"homepage": "https://github.com/contentstack/json-rte-serializer#readme",
"overrides": {
"omit-deep-lodash": {
"lodash": "4.18.1"
},
"form-data": "4.0.5",
"jest-environment-jsdom": {
"jsdom": "$jsdom"
}
}
,
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.flatten": "^4.4.9",
"@types/lodash.isempty": "^4.4.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.isobject": "^3.0.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/lodash.isundefined": "^3.0.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/omit-deep-lodash": "^1.1.1",
"esbuild": "^0.25.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jsdom": "^25.0.1",
"omit-deep-lodash": "^1.1.5",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"lodash": "4.18.1",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"lodash.isundefined": "^3.0.1",
"lodash.kebabcase": "^4.1.1",
"slate": "^0.103.0",
"uuid": "^11.1.1"
},
"files": [
"lib/**/*"
]
}