-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "quilljs-parser",
"version": "1.0.14",
"description": "Parse QuillJS delta object into easy-to-use paragraph object.",
"main": "./dist/main.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "jest",
"prepublishOnly": "npm run build",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewraygilbert/quilljs-parser.git"
},
"keywords": [
"quill",
"parse",
"delta"
],
"author": "Andrew Gilbert",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewanthro/quilljs-parser/issues"
},
"homepage": "https://github.com/andrewanthro/quilljs-parser#readme",
"devDependencies": {
"@types/clean-webpack-plugin": "^0.1.3",
"@types/jest": "^26.0.19",
"@types/webpack": "^5.28.1",
"clean-webpack-plugin": "^4.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
}
}