-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "prometheushackerrank",
"version": "1.0.0",
"description": "PrometheusHackerRank is a powerful Chrome extension that provides users with the knowledge to pass HackerRank certification tests.",
"author": {
"name": "David C Cavalcante (Fjallstoppur)",
"email": "fjallstoppur@proton.me",
"organisation": "Takk Innovate Studio"
},
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/Takk8IS/PrometheusHackerRank.git"
},
"bugs": {
"url": "https://github.com/Takk8IS/PrometheusHackerRank/issues"
},
"homepage": "https://github.com/Takk8IS/PrometheusHackerRank#readme",
"keywords": [
"certification",
"test",
"hackerrank",
"ai",
"automation",
"chromium",
"scraper",
"scraping",
"prometheus",
"prometheushackerrank",
"davcavalcante",
"david c cavalcante",
"fjallstoppur",
"takk innovate studio",
"takk8is"
],
"engines": {
"node": ">=20.x"
},
"type": "module",
"main": "prometheushackerrank",
"preferGlobal": true,
"dependencies": {
"body-parser": "*",
"cors": "*",
"dotenv": "*",
"express": "*",
"express-rate-limit": "*",
"groq-sdk": "*",
"helmet": "*",
"node-cache": "*",
"prettier": "*",
"puppeteer": "*",
"sharp": "^*",
"@tensorflow/tfjs-node": "*",
"xml2js": "*"
},
"devDependencies": {
"eslint": "*",
"jest": "*",
"prettier": "*"
},
"scripts": {
"start": "node --no-deprecation prometheushackerrank",
"postinstall": "npm run start",
"format": "prettier --write '**/*.js'",
"link-deps": "npm link body-parser cors dotenv express express-rate-limit groq-sdk helmet node-cache prettier puppeteer sharp @tensorflow/tfjs-node xml2js",
"lint": "eslint . --ext .js",
"test": "jest"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "coverage"
},
"hack": {
"tool": "chromium",
"strategy": "automation",
"goal": "knowledge acquisition",
"attitude": "relentless",
"style": "stealth"
}
}