UNPKG

2.11 kBJSONView Raw
1{
2 "name": "pagedjs",
3 "version": "0.1.30",
4 "description": "Chunks up a document into paged media flows and applies print styles",
5 "author": "Fred Chasen",
6 "license": "MIT",
7 "homepage": "https://pagedmedia.org",
8 "main": "lib/index.js",
9 "module": "src/index.js",
10 "browser": "dist/paged.js",
11 "dependencies": {
12 "@babel/polyfill": "^7.0.0",
13 "@babel/runtime": "^7.2.0",
14 "css-tree": "1.0.0-alpha.29",
15 "event-emitter": "^0.3.5",
16 "lodash": "^4.17.11",
17 "npm-check-updates": "^2.15.0"
18 },
19 "devDependencies": {
20 "@babel/cli": "^7.2.0",
21 "@babel/core": "^7.2.2",
22 "@babel/plugin-proposal-async-generator-functions": "^7.2.0",
23 "@babel/plugin-transform-runtime": "^7.2.0",
24 "@babel/preset-env": "^7.2.0",
25 "babel-core": "^7.0.0-bridge.0",
26 "babel-jest": "^23.6.0",
27 "chalk": "^2.4.1",
28 "eslint": "^5.10.0",
29 "express": "^4.16.4",
30 "ghostscript4js": "^3.0.0",
31 "jest": "^23.6.0",
32 "jest-image-snapshot": "^2.7.0",
33 "puppeteer": "GoogleChrome/puppeteer",
34 "rimraf": "^2.6.2",
35 "rollup": "^0.68.0",
36 "rollup-plugin-commonjs": "^9.2.0",
37 "rollup-plugin-json": "^3.1.0",
38 "rollup-plugin-livereload": "^0.6.0",
39 "rollup-plugin-node-builtins": "^2.1.2",
40 "rollup-plugin-node-resolve": "^4.0.0",
41 "rollup-plugin-serve": "^0.6.0"
42 },
43 "scripts": {
44 "build": "./node_modules/.bin/rollup -c",
45 "legacy": "./node_modules/.bin/rollup -c rollup.legacy.config.js",
46 "start": "./node_modules/.bin/rollup -w -c rollup.server.config.js",
47 "test": "npm run tests && npm run specs",
48 "tests": "jest --config=tests/jest.config.js",
49 "specs": "jest --config=specs/jest.config.js",
50 "compile": "./node_modules/.bin/babel src/ -d lib/",
51 "pretest": "npm run build",
52 "prepublishOnly": "npm run build && npm run compile && npm run legacy",
53 "watch": "./node_modules/.bin/rollup -w -c",
54 "lint": "./node_modules/.bin/eslint -c .eslintrc.js src; exit 0"
55 },
56 "repository": {
57 "type": "git",
58 "url": "https://gitlab.pagedmedia.org/polyfills/pagedjs.git"
59 },
60 "files": [
61 "dist",
62 "lib"
63 ]
64}