forked from timmson/java-interview
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 993 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 993 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
36
{
"name": "java-interview",
"version": "1.0.0",
"description": "Q & A for Java Developer Interview",
"main": "index.js",
"private": true,
"scripts": {
"test": "npx mocha",
"coverage": "npx nyc mocha && npx nyc report --reporter=text-lcov > coverage.lcov",
"generate": "node index.js",
"spell": "npx yaspeller -l ru ./",
"start": "npm run generate && cd ./quiz && npm run prod && cd ../mindmap && npm run prod"
},
"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/chai": "4.2.11",
"@types/mocha": "7.0.2",
"chai": "4.2.0",
"mocha": "7.1.1",
"nyc": "15.0.0"
},
"dependencies": {
"colors": "1.4.0",
"showdown": "1.9.1",
"yaspeller": "6.0.3"
}
}