-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.02 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@codingtools/cdt",
"description": "CLI for Developers",
"version": "1.0.6",
"author": "Ashish Patel @ashishpatel0720",
"bin": {
"cdt": "bin/run"
},
"bugs": {
"url": "https://github.com/codingtools/cdt/issues"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-commands": "^1.3.0",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"avsc": "^5.6.0",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"codecov": "^3.8.1",
"cron-validate": "^1.4.3",
"cron-validator": "^1.2.1",
"cronstrue": "^1.110.0",
"crypto-js": "^4.0.0",
"detect-character-encoding": "^0.8.0",
"encoding-japanese": "^1.0.30",
"jshashes": "^1.0.8",
"json-2-csv": "^3.10.3",
"minify": "^6.0.1",
"moment": "2.29.1",
"moment-timezone": "^0.5.32",
"node-cron": "^3.0.0",
"nyc": "^15.1.0",
"ora": "^5.2.0",
"shelljs": "^0.8.4",
"signale": "^1.4.0",
"snyk": "^1.518.0",
"test": "^0.6.0",
"tslib": "^2.1.0",
"@snyk/protect": "^1.657.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^4.0.8",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.2.9",
"@types/crypto-js": "^3.1.43",
"@types/mocha": "^7.0.0",
"@types/node": "13.9.3",
"@types/node-cron": "^2.0.3",
"@types/shelljs": "^0.8.8",
"@types/signale": "^1.2.1",
"chai": "^4.2.0",
"globby": "^10.0.1",
"mocha": "^7.0.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/codingtools/cdt",
"keywords": [
"cdt",
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "cdt",
"macos": {
"identifier": "@codingtools/cdt"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands"
],
"warn-if-update-available": {
"timeoutInDays": 3,
"message": "<%= chalk.green(config.name) %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>,\nuse npm install -g @codingtools/cdt to update."
}
},
"repository": {
"type": "git",
"url": "https://github.com/codingtools/cdt.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"snyk": true
}