-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "html2pdf",
"version": "0.2.0",
"type": "module",
"description": "Splits the selected piece of html into pages, prepared for printing, and provides a preview in the browser. Optional to add frontpage and footers.",
"author": "mettta",
"license": "MIT",
"keywords": [
"print",
"paginated",
"preview"
],
"repository": {
"type": "git",
"url": ""
},
"homepage": "",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/jsdom": "^21.1.7",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"jsdom": "^25.0.1",
"mocha": "^10.3.0",
"sinon": "^19.0.2",
"webpack": "^5.90.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"version": "node -e \"require('fs').writeFileSync('./src/version.js', 'export const VERSION = \\'' + require('./package.json').version + '\\';\\n')\" && git add src/version.js",
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "mocha --config .mocharc.default.json",
"test:unit": "mocha --config .mocharc.unit.json",
"test:integration": "mocha --config .mocharc.integration.json",
"test_server": "http-server"
},
"private": true
}