-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "azf-pdf-generator",
"version": "1.10.13",
"description": "",
"scripts": {
"test": "npm run test:jest && npm run test:lint",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:lint": "standard",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"deploy:test": "func azure functionapp publish test-func-pdf-api-v1",
"deploy:prod": "func azure functionapp publish prod-func-pdf-api-v1",
"start": "func start"
},
"author": "",
"dependencies": {
"@alheimsins/pdf-make": "2.0.2",
"@vtfk/logger": "4.1.2",
"@vtfk/pdf-generator": "1.0.1",
"@vtfk/utilities": "1.0.0",
"ajv": "8.11.2",
"handlebars": "4.7.7",
"html-to-pdfmake": "2.3.11",
"jsdom": "19.0.0",
"lodash.merge": "4.6.2",
"markdown-it": "12.3.2",
"markdown-it-front-matter": "0.2.3",
"pretty-bytes": "5.6.0",
"sjablong": "1.0.33",
"yaml-front-matter": "4.1.1"
},
"devDependencies": {
"@types/jest": "27.4.1",
"jest": "27.5.1",
"standard": "^17.0.0"
},
"standard": {
"env": [
"jest"
]
},
"env": {
"node": true,
"jest": true
}
}