-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "@xeger/quill-deltacvt",
"version": "0.0.0",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"clean": "rm -Rf dist lib",
"lint": "eslint --quiet 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"html-validate": "^7.18.0",
"jest": "^26.4.2",
"jsdom": "^16.4.0",
"prettier": "^2.1.2",
"quill-delta": "^4.2.2",
"rollup": "^2.27.1",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
},
"description": "Converts Quill Delta to HTML (or other formats) without depending on quill, parchment or quill-delta.",
"directories": {
"lib": "lib"
},
"files": [
"dist",
"lib"
],
"type": "commonjs",
"main": "dist/main.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/xeger/quill-deltacvt.git"
},
"keywords": [
"parchment",
"quill-delta",
"quilljs"
],
"author": "Tony Spataro",
"bugs": {
"url": "https://github.com/xeger/quill-deltacvt/issues"
},
"homepage": "https://github.com/xeger/quill-deltacvt#readme"
}