forked from UKHomeOffice/html-pdf-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "html-pdf-converter",
"description": "An HTML to PDF conversion service wrapper",
"version": "1.0.0",
"license": "MIT",
"author": "Joe Chapman [email protected]",
"repository": "git+https://github.com/UKHomeOffice/html-pdf-converter.git",
"bugs": {
"url": "https://github.com/UKHomeOffice/html-pdf-converter/issues"
},
"homepage": "https://github.com/UKHomeOffice/html-pdf-converter#readme",
"main": "index.js",
"scripts": {
"start": "node .",
"unit": "LOG_LEVEL=silent mocha",
"lint": "eslint .",
"test": "npm run unit && npm run lint"
},
"dependencies": {
"body-parser": "^1.17.1",
"churchill": "1.1.1",
"debug": "^2.6.3",
"express": "^4.15.2",
"hof-logger": "2.0.0",
"lodash": "^4.17.4",
"mustache": "^2.3.0",
"puppeteer": "^1.2.0"
},
"devDependencies": {
"choma": "^1.2.0",
"eslint": "^3.14.0",
"eslint-config-homeoffice": "^2.1.0",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"sinon": "^2.1.0",
"supertest": "^3.0.0"
},
"pre-commit": [
"test"
]
}