-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "typescript-jest",
"version": "0.1.0",
"description": "skeleton for TypeScript + Jest users.",
"author": {
"name": "TDDBC and other contributors"
},
"bugs": {
"url": "https://github.com/tddbc/typescript-jest/issues"
},
"homepage": "https://github.com/tddbc/typescript-jest",
"keywords": [
"TDDBC",
"typescript",
"jest"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tddbc/typescript-jest.git"
},
"scripts": {
"start": "ts-node main.ts",
"fmt": "prettier --write *.ts lib/*.ts",
"fmt:check": "prettier --check *.ts lib/*.ts",
"lint": "eslint main.ts lib/*.ts",
"pretest": "npm run fmt:check && npm run lint",
"test": "ts-node node_modules/jest/bin/jest.js",
"watch": "npm run test -- --watch"
},
"main": "main.ts",
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"rewire": "^6.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}