-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "ts-node-boilerplate",
"version": "0.0.0",
"description": "",
"keywords": [],
"homepage": "https://github.com/Pegase745/ts-node-boilerplate#readme",
"bugs": {
"url": "https://github.com/Pegase745/ts-node-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pegase745/ts-node-boilerplate.git"
},
"license": "MIT",
"author": "Michel Nemnom <[email protected]>",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"commit": "git-cz",
"dev": "ts-node src/index.ts",
"lint": "eslint . --ext .ts && tsc --noEmit",
"prepublishOnly": "yarn build",
"prerelease": "yarn build",
"release": "semantic-release",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"semantic-release/**/dot-prop": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@types/jest": "^26.0.21",
"@types/node": "14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"commitizen": "^4.2.3",
"commitlint": "^12.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "5",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"sort-package-json": "^1.49.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">= 14.0.0"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}