-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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": "jsdocx",
"version": "0.4.5",
"description": "Generate .docx files from JS",
"main": "dist/jsdocx.js",
"module": "src/index.js",
"scripts": {
"build": "webpack --mode=production --progress && cp dist/jsdocx.js docs/",
"dev": "webpack --mode=development --watch",
"test": "npm run build && mocha --require @babel/register --colors ./test/*.js",
"lint": "eslint ./src --ext .js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zuck/jsdocx.git"
},
"keywords": [
"js",
"docx",
"office",
"convert"
],
"author": "Emanuele Bertoldi <emanuele.bertoldi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zuck/jsdocx/issues"
},
"homepage": "https://github.com/zuck/jsdocx#readme",
"dependencies": {
"jszip": "^3.2.2",
"to-xml": "^0.1.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^4.18.2",
"eslint-loader": "1.7.1",
"mocha": "^6.2.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}