-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 911 Bytes
/
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
{
"name": "jsquiz",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"linter": "./node_modules/.bin/eslint ./src; exit 0;"
},
"bin": {
"jsquiz": "bin/jsquiz-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorivanovspb/jsquiz.git"
},
"keywords": [
"quiz"
],
"author": "Victor I.",
"license": "Apache",
"bugs": {
"url": "https://github.com/victorivanovspb/jsquiz/issues"
},
"homepage": "https://github.com/victorivanovspb/jsquiz#readme",
"dependencies": {
"clear": "^0.1.0",
"cmdify": "0.0.4",
"colors": "^1.4.0",
"commander": "^4.0.0",
"figlet": "^1.2.4",
"inquirer": "^7.0.0",
"readline": "^1.3.0",
"winston": "^3.2.1",
"xml2js": "^0.4.22"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"jest": "^24.9.0"
}
}