-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.06 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": "@contentstack/json-rte-serializer",
"version": "2.0.11",
"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",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/jsdom": "^16.2.12",
"@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",
"@types/uuid": "^8.3.0",
"esbuild": "0.19.11",
"jest": "^27.5.1",
"jest-html-reporter": "^3.7.0",
"jsdom": "^16.6.0",
"omit-deep-lodash": "^1.1.5",
"ts-jest": "^27.0.3",
"typescript": "^4.4.2"
},
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"lodash": "^4.17.21",
"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": "^8.3.2"
},
"files": [
"lib/**/*"
]
}