-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.4 KB
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
{
"name": "relno-plugin-contributor",
"version": "1.0.0",
"description": "Support generate contributor section with Relno.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "ppodds",
"license": "MIT",
"module": "CommonJS",
"scripts": {
"clean": "rimraf lib",
"build": "pnpm clean && tsc",
"format": "prettier --write {src,__tests__}/**/*.ts",
"format-check": "prettier --check {src,__tests__}/**/*.ts",
"lint": "eslint --fix src/**/*.ts",
"lint-staged": "lint-staged",
"test": "jest"
},
"repository": "ppodds/relno",
"keywords": [
"node",
"release",
"release note"
],
"packageManager": "pnpm@8.11.0",
"devDependencies": {
"@jest/globals": "^30.4.1",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^30.4.2",
"lint-staged": "^15.2.0",
"prettier": "3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
],
"__tests__/**/*.ts": [
"prettier --write"
]
},
"dependencies": {
"relno": "workspace:^"
}
}