-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "ts-scratchpad",
"version": "7.0.1",
"author": "markfknight ([email protected])",
"license": "MIT",
"scripts": {
"start": "npm run ts-node-dev",
"ts-node-dev": "tsnd --respawn --transpileOnly ./src/index.ts",
"prets-node:test": "npm test",
"lint": "eslint . --ext .ts,.tsx",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markfknight/vscode-typescript-scratchpad.git"
},
"bugs": {
"url": "https://github.com/markfknight/vscode-typescript-scratchpad/issues"
},
"homepage": "https://github.com/markfknight/vscode-typescript-scratchpad#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.2.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"notify": true,
"rootDir": "src/",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$"
}
}