generated from netlify/build-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "netlify-plugin-generate-pdf",
"version": "0.1.0",
"description": "Generate a PDF from the provided URL and save it to publish directory",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.json",
"src/**/*.sh",
"src/**/*.html",
"src/**/*.ejs",
"manifest.yml"
],
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "martinjagodic <[email protected]>",
"license": "MIT",
"repository": "martinjagodic/netlify-plugin-generate-pdf",
"directories": {
"lib": "src",
"test": "test"
},
"engines": {
"node": ">=10.22.0"
},
"scripts": {
"build": "netlify-build",
"test": "npm run lint && npm run ava",
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint --ignore-path .gitignore --fix --cache --format=codeframe --max-warnings=0 \"{src,init}/**/*.js\"",
"prettier": "prettier --ignore-path .gitignore --write --loglevel warn \"{.github,src,init}/**/*.{js,md,yml,json}\" \"*.{js,md,yml,json}\"",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"devDependencies": {
"@netlify/build": "^4.7.2",
"ava": "^3.13.0",
"cross-env": "^7.0.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^4.0.3",
"netlify-cli": "^2.65.0",
"prettier": "^2.1.2",
"release-it": "^14.0.3"
},
"dependencies": {
"chrome-aws-lambda": "^7.0.0",
"puppeteer": "^8.0.0"
}
}