forked from timmson/java-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 925 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 925 Bytes
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
{
"name": "java-interview",
"version": "2.0.0",
"description": "Q&A for Java Developer Interview",
"main": "index.js",
"private": true,
"scripts": {
"lint": "npx eslint ./lib ./test index.js ./mindmap/src ./quiz/src --fix",
"test": "npx jest",
"coverage": "npx jest --collectCoverage",
"mdlint": "npx markdownlint-cli ./*.md --fix",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timmson/java-interview.git"
},
"author": "Krotov Artem",
"license": "MIT",
"bugs": {
"url": "https://github.com/timmson/java-interview/issues"
},
"homepage": "https://github.com/timmson/java-interview#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"eslint": "8.6.0",
"jest": "^27.4.7",
"mustache": "^4.2.0"
},
"dependencies": {
"colors": "^1.4.0",
"showdown": "^2.0.3",
"yaspeller": "^10.0.1"
}
}