-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "jsx-pdf",
"version": "2.3.0",
"main": "dst/index.js",
"description": "Generate modular PDFs using JSX.",
"files": [
"/dst"
],
"author": "Yaroslav Borcheninov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/schibsted/jsx-pdf.git"
},
"keywords": [
"pdf",
"jsx",
"pdf-generation",
"pdfmake"
],
"scripts": {
"dev": "yarn build -- --watch src",
"build": "babel src --out-dir dst --ignore '**/*.test.js'",
"lint": "yarn eslint && yarn prettier:check",
"eslint": "eslint \"{src,example,test}/**/*.js\"",
"prettier:check": "prettier --check **/*.{js,json,md,babelrc,eslintrc,prettierrc}",
"prettier:write": "prettier --write **/*.{js,json,md,babelrc,eslintrc,prettierrc}",
"test": "yarn lint && yarn test:unit${TRAVIS:+:coveralls}",
"test:unit": "jest --coverage -c jest.unit.config.js",
"test:unit:coveralls": "jest --coverage --coverageReporters=text-lcov -c jest.unit.config.js | coveralls",
"test:integration": "yarn demo && jest -c jest.integration.config.js",
"prepublish": "yarn test:unit && yarn build && yarn test:integration",
"demo": "node --require @babel/register example/index.js"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-config-schibsted": "^7.0.0",
"eslint-config-schibsted-modules": "^7.0.0",
"eslint-config-schibsted-node": "^7.0.0",
"eslint-config-schibsted-react": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-unicorn": "^22.0.0",
"jest": "^26.5.0",
"jest-watch-typeahead": "^0.6.1",
"pdf2json": "^1.2.0",
"pdfmake": "0.2.4",
"prettier": "^2.1.2"
},
"peerDependencies": {
"@babel/plugin-transform-react-jsx": "^7.0.0",
"pdfmake": "^0.1.59"
}
}