-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.55 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": "@vivliostyle/print",
"version": "2.30.7",
"description": "Allows page-layouting using the vivliostyle for printing within a website without destroying the original layout",
"main": "dist/index.cjs.js",
"jsnext:main": "dist/index.es6.js",
"module": "dist/index.es6.js",
"scripts": {
"prebuild": "npm run lint",
"build": "esbuild src/index.js --bundle --outfile=dist/index.cjs.js --format=cjs --minify --sourcemap && esbuild src/index.js --bundle --outfile=dist/index.es6.js --format=esm --minify --sourcemap",
"prepublishOnly": "npm run build",
"build_demo": "esbuild demo/index.js --bundle --outfile=demo/bundle.js --format=iife --minify --sourcemap",
"prepare": "npm run build",
"lint": "eslint src/*",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run build_demo && gh-pages -d demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivliostyle/vivliostyle-print.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"print",
"vivliostyle",
"layout",
"pages"
],
"author": "Johannes Wilm",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vivliostyle/vivliostyle.js/issues"
},
"homepage": "https://github.com/vivliostyle/vivliostyle-print#readme",
"devDependencies": {
"@vivliostyle/core": "^2.30.7",
"esbuild": "^0.24.0",
"eslint": "^7.19.0",
"gh-pages": "^6.2.0"
}
}