forked from thompsonsj/slate-serializers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "slate-serializers",
"version": "0.0.27",
"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": "prettier --write \"{src,__tests__}/**/*.ts\"",
"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.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/html-escaper": "^3.0.0",
"@types/jest": "^29.4.0",
"commitizen": "^4.3.0",
"css-select": "^5.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"jest": "^29.4.0",
"prettier": "^2.8.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.0.1",
"html-entities": "^2.3.3",
"htmlparser2": "^8.0.1",
"slate": "^0.88.1",
"slate-hyperscript": "^0.77.0"
}
}