-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "cht-watchdog",
"engines": {
"node": ">=20.8.1"
},
"scripts": {
"lint": "eslint 'development/**/*.js'",
"apply-dev-patches": "node ./development/development_patches.js apply",
"revert-dev-patches": "node ./development/development_patches.js revert",
"semantic-release": "semantic-release",
"postinstall": "husky",
"test": "npm run test-integration",
"test-integration": "mocha \"./development/tests/integration/**/*.js\""
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@medic/eslint-config": "^1.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.5.0",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"mocha": "^10.8.2",
"semantic-release": "^24.2.0"
},
"version": "1.17.0",
"repository": {
"type": "git",
"url": "https://github.com/medic/cht-watchdog.git"
},
"mocha": {
"timeout": 100000,
"require": [
"./development/tests/integration/mocha-hooks.js"
]
}
}