-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "@rtvision/mocha-esbuild",
"description": "Run tests with mocha compiled by esbuild",
"version": "0.1.8",
"author": "Kalvens (@kalvenschraut)",
"bin": {
"mocha-esbuild": "./bin/run"
},
"bugs": "https://github.com/RtVision/mocha-esbuild/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"esbuild": "^0.13.14",
"fast-glob": "^3.2.7",
"tmp-promise": "^3.0.3",
"tslib": "^2.3.1"
},
"peerDependencies": {
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.8",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/RtVision/mocha-esbuild",
"keywords": [
"oclif",
"mocha",
"esbuild"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "mocha-esbuild"
},
"repository": "RtVision/mocha-esbuild",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc.json",
"prepack": "rm -rf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}