-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "pzeropdf",
"version": "0.0.1",
"description": "A project to download issues from the the Google Project Zero's bug tracker. Converts issues to PDF file and downloads the attachments to ./attachments folder.",
"main": "./dist/Main.js",
"types": "./dist/Main.d.ts",
"private": false,
"scripts": {
"build": "rm -rf ./dist && npx tsc && yarn copy:packageinfo",
"prepare": "npm run build",
"copy:packageinfo": "cp package.json ./dist",
"run:publish": "rm -rf ./dist && yarn build && cd ./dist && npm publish"
},
"bin": {
"pzeropdf": "./dist/Main.js"
},
"homepage": "https://github.com/HappilyCoded/pzeropdf",
"keywords": [
"security",
"zeroday",
"project-zero",
"security-tools",
"happilycoded"
],
"author": "HappilyCoded",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"node-fetch": "^2.2.0",
"puppeteer": "^1.9.0",
"request": "^2.88.0"
},
"devDependencies": {
"@types/node": "^10.11.7",
"@types/node-fetch": "^2.1.2",
"@types/puppeteer": "^1.12.3",
"typescript": "^3.1.3"
}
}