forked from thompsonsj/slate-serializers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
68
69
70
71
72
{
"name": "slate-serializers",
"version": "0.4.0",
"description": "Serialize Slate JSON objects to HTML and vice versa. Define rules to modify the end result.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "npx prettier --write .",
"lint": "tslint -p tsconfig.json",
"release": "standard-version",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thompsonsj/slate-serializers.git"
},
"files": [
"lib/**/*"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thompsonsj/slate-serializers/issues"
},
"homepage": "https://github.com/thompsonsj/slate-serializers#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/html-escaper": "^3.0.0",
"@types/jest": "^29.5.1",
"@types/react": ">=16",
"@types/react-test-renderer": "^18.0.0",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"postcss": "^8.4.24",
"postcss-js": "^4.0.1",
"prettier": "2.8.8",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@testing-library/react": "^14.0.0",
"css-select": "^5.1.0",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"html-entities": "^2.3.3",
"htmlparser2": "~7.2.0",
"nanoid": "^4.0.2",
"slate": "^0.94.1",
"slate-hyperscript": "^0.77.0"
},
"peerDependencies": {
"@types/react": ">=16",
"react": ">=16",
"react-dom": ">=16"
}
}