-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
{
"name": "mocha-bad-test-finder",
"description": "A CLI to help find bad mocha tests that could be improved",
"version": "0.0.5",
"author": "Dylan Stankievech @Dylanlan",
"bin": {
"btf": "./bin/run"
},
"bugs": "https://github.com/Dylanlan/mocha-bad-test-finder/issues",
"scripts": {
"manifest": "rimraf oclif.manifest.json && oclif-dev manifest",
"readme": "oclif-dev readme",
"postpack": "rimraf oclif.manifest.json",
"posttest": "yarn run lint",
"prepack": "rimraf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts --fix .",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/plugin-help": "^3.1.0",
"cli-spinners": "^2.4.0",
"lodash": "^4.17.19",
"mocha": "^10.2.0",
"ora": "^4.0.5",
"tslib": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.0.0",
"chai": "^4.2.0",
"chance": "^1.1.6",
"eslint": "^6",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^8",
"globby": "^11.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Dylanlan/mocha-bad-test-finder",
"keywords": [
"oclif",
"mocha",
"bad",
"test",
"finder"
],
"license": "ISC",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "btf",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/Dylanlan/mocha-bad-test-finder",
"types": "lib/index.d.ts",
"packageManager": "[email protected]"
}