-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.82 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": "@adityahegde/typescript-test-utils",
"version": "1.3.2",
"description": "Various testing utils for writing tests in TypeScript/JavaScript",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig-build.json",
"test": "npm run test-mocha && jest",
"test-mocha": "nyc mocha test/mocha/*.spec.ts",
"docs": "typedoc --out docs src/index.ts src/*/index.ts"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AdityaHegde/typescript-test-utils"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"keywords": [
"typescript",
"decorators",
"framework",
"mocha",
"jest",
"playwright"
],
"mocha": {
"ui": "bdd",
"require": [
"ts-node/register"
]
},
"jest": {
"testMatch": [
"<rootDir>/test/jest/*.spec.ts"
],
"preset": "ts-jest"
},
"nyc": {
"check-coverage": true,
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"lines": 80,
"statements": 80
},
"devDependencies": {
"@adityahegde/misc-scripts": "^1.0.1",
"@playwright/test": "^1.17.2",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.33",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"playwright": "^1.17.2",
"should": "^13.2.3",
"sinon": "^12.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typescript": "^4.5.4"
}
}