-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.74 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
59
60
61
62
63
{
"name": "universal-oss-template",
"version": "1.0.0",
"description": "Enterprise-grade, tech-agnostic universal open source project template",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/rupeshbisen/universal-oss-template.git"
},
"homepage": "https://github.com/rupeshbisen/universal-oss-template",
"bugs": {
"url": "https://github.com/rupeshbisen/universal-oss-template/issues"
},
"keywords": [
"template",
"open-source",
"github",
"enterprise",
"boilerplate"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"engines": {
"node": ">=20.8.1",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md,yml,yaml}\"",
"prepare": "husky install",
"test": "echo \"Tests not configured yet\"",
"test:watch": "echo \"Tests not configured yet\" && exit 0",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^10.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"prettier": "^3.1.0",
"semantic-release": "^23.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100,
"arrowParens": "always"
}
}