-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 895 Bytes
/
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
{
"name": "@gzzhanghao/docx2quill",
"version": "0.3.1",
"description": "Convert DOCX to Quill Delta.",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"watch": "babel src -d lib --watch",
"prepare": "npm run build"
},
"author": "Jason <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.2"
},
"dependencies": {
"@gzzhanghao/docx": "^0.2.0",
"quill-delta": "^3.5.0",
"units-css": "^0.4.0"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gzzhanghao/docx2quill.git"
},
"bugs": {
"url": "https://github.com/gzzhanghao/docx2quill/issues"
},
"homepage": "https://github.com/gzzhanghao/docx2quill#readme"
}