-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 988 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
43
44
{
"name": "koingraph",
"version": "0.5.2",
"description": "Graph generator for android projects using Koin",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha --recursive"
},
"bin": {
"koingraph": "./index.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tentenponce/KoinGraph.git"
},
"keywords": [
"koingraph"
],
"author": "Exequiel Egbert V. Ponce",
"license": "MIT",
"bugs": {
"url": "https://github.com/tentenponce/KoinGraph/issues"
},
"homepage": "https://github.com/tentenponce/KoinGraph#readme",
"dependencies": {
"chalk": "^2.4.2",
"filehound": "^1.17.0",
"inquirer": "^6.3.1",
"minimist": "^1.2.0",
"opn": "^6.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"sinon": "^7.3.2"
}
}