-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "@idrinth-api-bench/website-builder",
"version": "1.0.0",
"description": "This repository is our website deploy and update tool to minimize github api queries.",
"main": "index.js",
"type" : "module",
"scripts": {
"start": "node index.js",
"lint": "eslint --ext=.ts --debug .",
"commitlint-ci": "commitlint --last",
"commitlint": "commitlint --edit",
"postinstall": "npm run simple-git-hooks",
"simple-git-hooks": "simple-git-hooks"
},
"simple-git-hooks": {
"commit-msg": "npm run commitlint",
"pre-push": "npm run commitlint-ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idrinth-api-bench/website-builder.git"
},
"keywords": [
"websitebuilder",
"webhooks",
"api-bench"
],
"author": "Hussain Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/idrinth-api-bench/api-bench/issues"
},
"homepage": "https://idrinth-api-ben.ch",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"devDependencies": {
"@idrinth-api-bench/eslint-config": "https://github.com/idrinth-api-bench/eslint-config#setup-base-config",
"@commitlint/cli": "^19.3.0",
"simple-git-hooks": "^2.11.1"
},
"engineStrict": true,
"engines": {
"node": ">=20"
}
}