-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "interview-questions",
"version": "1.3.2",
"main": "index.js",
"scripts": {
"test": "npx jest ./test/InterviewQuestion.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fix2015/interview-questions.git"
},
"bin": {
"interview-questions": "cli.js"
},
"keywords": [
"interview",
"questions",
"filter",
"difficulty-level",
"question-generator",
"junior",
"middle",
"senior",
"top-questions",
"json",
"array",
"text",
"cli",
"command-line-tool",
"nodejs",
"javascript",
"random-selection",
"question-bank"
],
"author": "Semianchuk Vitalii",
"license": "ISC",
"bugs": {
"url": "https://github.com/fix2015/interview-questions/issues"
},
"homepage": "https://github.com/fix2015/interview-questions#readme",
"description": "A CLI tool for generating interview questions by difficulty level and quantity, with support for multiple output formats including text, JSON, and arrays.",
"dependencies": {
"get-them-args": "^1.3.2"
}
}