-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.62 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@microfleet/html-to-pdf",
"version": "2.0.0",
"description": "Generates PDF files based on the HTML inputs and arbitrary data. Can be handy to create statements. Features integration with @microfleet/files for distributed storage and access control to such files",
"main": "./lib/index.js",
"repository": "https://github.com/microfleet/html-to-pdf.git",
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"scripts": {
"lint": "eslint ./src",
"start": "mfleet",
"compile": "babel -d ./lib --copy-files ./src",
"test": "yarn lint && yarn test:integration",
"test:integration": "mdep test run",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release",
"docker-release": "mdep docker release",
"release": "yarn --frozen-lockfile && yarn semantic-release"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"64": "^0.2.0",
"@hapi/hapi": "^18.4.0",
"@microfleet/core": "^14.1.2",
"@microfleet/transport-amqp": "^15.0.0",
"@microfleet/validation": "^8.1.2",
"bluebird": "^3.5.5",
"bluebird-retry": "^0.11.0",
"chrome-launcher": "^0.11.2",
"chrome-remote-interface": "^0.28.0",
"common-errors": "^1.0.5",
"debug": "^4.1.0",
"ms-conf": "^5.0.2",
"mustache": "^3.1.0",
"prom-client": "^11.5.3",
"puppeteer": "^1.20.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rfdc": "^1.1.4",
"stdout-stream": "^1.4.1"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@makeomatic/deploy": "^9.1.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/exec": "^3.3.7",
"@semantic-release/git": "7.0.18",
"babel-eslint": "^10.0.3",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.6.1",
"cross-env": "^6.0.0",
"eslint": "^6.4.0",
"eslint-config-makeomatic": "^3.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"jest": "^24.9.0",
"json": "^9.0.6",
"rimraf": "^3.0.0"
},
"files": [
"src/",
"lib/",
"schemas/"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/configs/"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
}
}
}