-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "@maxwell-k/a4",
"version": "0.1.1",
"type": "module",
"description": "Create a PDF with puppeteer",
"main": "a4.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm exec -- prettier --list-different a4.js && npm exec -- eslint a4.js",
"version": "node --no-warnings .version.js && git add a4.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxwell-k/a4.git"
},
"keywords": [
"pdf",
"a4",
"papersize",
"puppeteer"
],
"author": "Keith Maxwell <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/maxwell-k/a4/issues"
},
"homepage": "https://github.com/maxwell-k/a4#readme",
"bin": "a4.js",
"dependencies": {
"commander": "^12.0.0",
"puppeteer-core": "^22.0.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "script"
},
"env": {
"node": true
}
}
}