-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "todoclif",
"description": "A CLI to tracking your list of pending and no procrastinate anymore",
"version": "0.9.4",
"author": "Rodrigo Suárez @_toti1212",
"bin": {
"todo": "./bin/run"
},
"bugs": "https://github.com/toti1212/todoclif/issues",
"dependencies": {
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.12.12",
"@oclif/plugin-help": "^2.1.6",
"chalk": "^2.4.2",
"cli-ux": "^5.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-oclif": "^3.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"globby": "^8.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.17.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/toti1212/todoclif",
"keywords": [
"todo",
"cli",
"oclif",
"bash",
"organization",
"cli-app"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "todo",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./src/hooks/init/init"
}
},
"repository": "toti1212/todoclif",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}