-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "maurice.faber@redkubes.com",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.30.2",
"express": "^4.21.2"
},
"description": "Simple hello world sample in Node",
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@eslint/compat": "^1.4.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^3.1.4",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^11.7.5",
"nock": "^13.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"run-if-changed": "0.0.9",
"sinon": "^9.1.0",
"sinon-chai": "^3.5.0",
"standard-version": "^9.0.0",
"supertest": "^5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-checkout": "run-if-changed",
"post-commit": "run-if-changed",
"post-merge": "run-if-changed",
"post-rewrite": "run-if-changed",
"pre-commit": "npm run husky:pre-commit"
}
},
"license": "Apache-2.0",
"lint-staged": {
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.{js}": [
"eslint --fix"
]
},
"main": "index.js",
"name": "nodejs-helloworld",
"private": true,
"run-if-changed": {
"package-lock.json": "npm install --prefer-offline --no-audit"
},
"scripts": {
"cz": "git-cz",
"cz:retry": "git-cz --retry",
"husky:lint-staged": "lint-staged",
"husky:pre-commit": "run-p lint husky:lint-staged",
"lint": "eslint --ext js .",
"lint:fix": "eslint --ext js .",
"release": "standard-version",
"start": "node --max-http-header-size=16000 index.js",
"test": "NODE_ENV=test mocha --timeout 25000 test.js --exit"
},
"version": "1.4.0"
}