-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "npm-pkg-boilerplate",
"version": "0.0.x",
"description": "A boilerplate project for npm packages",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"release": "semantic-release",
"prepare": "husky install",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"start": "npx ts-node src/index.ts",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-ahmadbilal/npm-pkg-boilerplate.git"
},
"keywords": [
"nodejs",
"typescript",
"javascript",
"npm-package",
"open-source"
],
"author": {
"name": "Ahmad Bilal",
"email": "ahmadbilal.3491@gmail.com",
"url": "https://github.com/dev-ahmadbilal"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dev-ahmadbilal/npm-pkg-boilerplate/issues"
},
"homepage": "https://github.com/dev-ahmadbilal/npm-pkg-boilerplate#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"commitlint": "^19.4.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "3.3.3",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}