-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "npm-package-boilerplate",
"version": "0.0.0-development",
"description": "NodeJS boilerplate with TypeScript, Jest, ESLint, Prettier, Husky, CommitLint, CI in GitHub Action",
"keywords": ["boilerplate", "prettier", "eslint", "husky", "commitlint", "typescript", "vitest"],
"files": ["lib"],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf lib",
"start": "ts-node src/index.ts",
"test": "vitest run",
"check:fix": "npx @biomejs/biome check --write",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@faker-js/faker": "^7.6.0",
"@vitest/coverage-c8": "^0.26.3",
"husky": "^8.0.3",
"jest-extended": "^3.2.1",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.26.3"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": ["main"]
},
"repository": {
"type": "git",
"url": "https://github.com/rluvaton/npm-package-boilerplate.git"
},
"bugs": {
"url": "https://github.com/rluvaton/npm-package-boilerplate/issues"
},
"license": "MIT"
}