-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "@thebeyondgroup/shopify-rich-text-renderer",
"version": "2.0.3",
"description": "Convert Shopify's rich text field from a rich text schema to HTML.",
"main": "src/index.js",
"repository": "https://github.com/TheBeyondGroup/shopify-rich-text-renderer.git",
"author": "Sean ",
"license": "MIT",
"private": false,
"type": "module",
"typings": "index.d.ts",
"scripts": {
"build": "npx rollup -c",
"docs": "npx jsdoc2md ./src/index.js > docs.md",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"bump": "npx rollup -c && npm version patch --no-git-tag-version",
"format": "npx prettier --write src/index.js",
"format:check": "npx prettier -c src/index.js",
"lint": "npx eslint src/index.js",
"lint:fix": "npx eslint --fix src/index.js"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"convert",
"deserialize",
"deserializer",
"html serializer",
"html",
"javascript",
"js",
"metafield",
"Metaobject",
"rich text to html",
"rich text",
"renderer",
"serialize",
"serializer",
"shopify",
"utilities"
],
"files": [
"readme.md",
"LICENSE",
"src",
"dist",
"index.d.ts"
],
"homepage": "https://github.com/TheBeyondGroup/shopify-rich-text-renderer#readme",
"bugs": {
"url": "https://github.com/TheBeyondGroup/shopify-rich-text-renderer/issues"
}
}