forked from soccerloway/quill-delta-to-html
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@time-loop/quill-delta-to-html",
"version": "0.12.0-71",
"description": "Converts Quill's delta ops to HTML",
"main": "./dist/commonjs/main.js",
"types": "./dist/esm/main.d.ts",
"module": "./dist/esm/main.js",
"dependencies": {
"lodash": "^4.17.21"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.195",
"@types/node": "^7.0",
"coveralls": "^3.0",
"husky": "^3.0.9",
"jest": "^29.2.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"ts-jest": "^29.0.3",
"typescript": "~4.8.4"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.commonjs.json",
"test": "jest",
"coverage": "npm run test -- --coverage | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/time-loop/quill-delta-to-html.git"
},
"keywords": [
"quill",
"delta",
"html"
],
"author": "Nihat Özer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nozer/quill-delta-to-html/issues"
},
"homepage": "https://github.com/nozer/quill-delta-to-html#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}