forked from VolodymyrBaydalka/docxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "docx-preview",
"version": "0.1.14",
"license": "Apache-2.0",
"keywords": [
"word",
"docx"
],
"author": {
"name": "Volodymyr Baydalka"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zVolodymyr/docxjs.git"
},
"dependencies": {
"jszip": ">=3.0.0"
},
"devDependencies": {
"css-loader": "^6.7.1",
"diff": "^5.0.0",
"jasmine-core": "^4.1.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.0.0",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.6",
"tslib": "^2.4.0",
"typescript": "^4.1.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"scripts": {
"build": "webpack",
"build-prod": "webpack --mode production",
"build-all": "npm run build & npm run build-prod",
"watch": "webpack --watch",
"e2e": "karma start --single-run",
"e2e-watch": "karma start"
},
"files": [
"dist"
],
"main": "dist/docx-preview.min.js",
"types": "dist/docx-preview.d.ts"
}