generated from PDMLab/ts-node-prettier-vscode-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "ts-node-prettier-vscode-starter",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"prerelease": "yarn build",
"release": "standard-version",
"test": "jest",
"lint-ts": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDMLab/ts-node-prettier-vscode-starter.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PDMLab/ts-node-prettier-vscode-starter/issues"
},
"homepage": "https://github.com/PDMLab/ts-node-prettier-vscode-starter#readme",
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.2",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"should": "^13.2.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.4.3"
},
"jest": {
"testRegex": "test/.+[Tt]ests?\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"octokit": "^2.0.14"
}
}