-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
71
72
73
74
75
76
77
78
79
80
{
"name": "task-warrior-export",
"description": "Export {task/time}warrior data per month/per project",
"version": "0.0.0",
"author": "Schmidely Stéphane @stephlm2dev",
"bin": {
"twe": "./bin/run"
},
"bugs": "https://github.com/stephlm2dev/task-warrior-export/issues",
"dependencies": {
"@oclif/command": "1",
"@oclif/config": "1",
"@oclif/plugin-autocomplete": "^0.1.0",
"@oclif/plugin-help": "1",
"@types/inquirer": "^6.0.3",
"@types/shelljs": "^0.8.5",
"inquirer": "^6.3.1",
"json2csv": "^4.5.1",
"moment": "^2.24.0",
"moment-range": "^4.0.2",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@oclif/dev-cli": "1",
"@oclif/test": "1",
"@oclif/tslint": "1",
"@types/chai": "4",
"@types/mocha": "5",
"@types/node": "9",
"chai": "4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"globby": "8",
"mocha": "5",
"nyc": "11",
"standard-version": "^7.0.1",
"ts-node": "5",
"tslib": "1",
"tslint": "5",
"typescript": "2.8"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/stephlm2dev/task-warrior-export",
"keywords": [
"oclif"
],
"license": "AGPL-3.0-only",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "twe",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "stephlm2dev/task-warrior-export",
"scripts": {
"postpack": "rm -f .oclif.manifest.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"commit": "git-cz",
"release": "standard-version -s",
"release:beta": "standard-version -s -p beta"
},
"types": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}