-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
37 lines (37 loc) · 1013 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": "h5p-exportable-text-area",
"version": "1.0.0",
"private": true,
"description": "Library that displays an area where the user may input text, which is exportable as a doc-file",
"main": "-",
"scripts": {
"dev": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h5p/h5p-exportable-text-area.git"
},
"keywords": [
"h5p",
"library",
"export",
"docx"
],
"author": "H5P Group AS <[email protected]> (https://h5p.group)",
"license": "MIT",
"bugs": {
"url": "https://github.com/h5p/h5p-exportable-text-area/issues"
},
"homepage": "https://github.com/h5p/h5p-exportable-text-area#readme",
"devDependencies": {
"babel-loader": "^9.1.0",
"css-loader": "^6.7.3",
"docx": "^7.8.2",
"file-saver": "^2.0.5",
"style-loader": "^3.3.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
}
}