-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "vtex-google-auth-cli",
"version": "0.1.0",
"main": "dist/index.js",
"author": "MatheusR42",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"puppeteer": "^5.5.0",
"puppeteer-extra": "^3.1.15",
"puppeteer-extra-plugin-stealth": "^2.6.5"
},
"scripts": {
"build": "rm -rf ./dist && tsc && tsc --project tsconfig.types.json",
"dev": "rm -rf ./dist && tsc --watch",
"prepublishOnly": "yarn build"
},
"repository": "https://github.com/MatheusR42/vtex-google-auth-cli/",
"keywords": [
"vtex",
"CLI"
],
"files": [
"dist/**/*",
"src/**/*"
],
"description": "A tool to get VtexIdclientAutCookie Token by CLI",
"bin": {
"vtex-google-auth": "dist/bin/get-token.js"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}