-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
46
47
48
49
50
51
{
"name": "should-i-cli",
"description": "Decision-making made easy. Ask a question to get back a yes or no answer.",
"version": "2.1.1",
"author": "Cedric Amaya @cedricium",
"bin": {
"should-i": "./bin/run"
},
"bugs": "https://github.com/cedricium/should-i-cli/issues",
"dependencies": {
"@oclif/command": "^1.4.30",
"@oclif/config": "^1.6.18",
"@oclif/plugin-help": "^1.2.11",
"maker-link": "^1.0.0",
"ora": "^2.1.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"lodash": "^4.17.11",
"mocha": "^5.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/cedricium/should-i-cli",
"keywords": [
"oclif",
"cli",
"yes-no",
"decision",
"should-i"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "should-i"
},
"repository": "cedricium/should-i-cli",
"scripts": {
"lint": "eslint . --no-eslintrc node_modules",
"posttest": "npm run lint",
"test": "mocha"
}
}