generated from syrus-bot/js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "syrus-PROJECT",
"version": "1.0.0",
"description": "PROJECT DESCRIPTION",
"main": "src/main.js",
"scripts": {
"start": "npm run lint && cd src && node main",
"lint": "npx eslint src --ext .json,.js --fix",
"gpr": "git pull && npm start"
},
"author": {
"name": "AUTHOR USERNAME (FULL NAME)",
"email": "AUTHOR EMAIL",
"url": "AUTHOR GITHUB / PERSONAL SITE"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-plugin-json": "^2.1.2",
"husky": "^4.3.0",
"semantic-release": "^17.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/syrus-bot/PROJECT.git"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/syrus-bot/PROJECT/issues"
},
"homepage": "https://github.com/syrus-bot/PROJECT#readme"
}