-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@netatwork/mocha-utils",
"version": "2.1.5",
"description": "Utility package for mocha based test setup",
"main": "dist/index.js",
"typings": "dist/types/index",
"scripts": {
"prebuild": "rimraf dist & eslint . --ext .ts --cache",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"dev": "tsc -w --preserveWatchOutput",
"postbuild": "copyfiles -f src/karma-html-reporter/style.css dist/karma-html-reporter",
"gen:changelog": "conventional-changelog -i CHANGELOG.md -s -r 2"
},
"keywords": [
"mocha",
"test",
"util"
],
"author": "Net at Work GmbH",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Netatwork-de/mocha-utils.git"
},
"bugs": {
"url": "https://github.com/Netatwork-de/mocha-utils/issues"
},
"homepage": "https://github.com/Netatwork-de/mocha-utils#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.2.2",
"@types/karma": "^6.3.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"conventional-changelog-cli": "^5.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^50.3.0",
"husky": "^9.0.11",
"karma": "^6.4.1",
"mocha": "^10.2.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.3.2"
},
"dependencies": {
"mocha-junit-reporter": "^2.2.0"
},
"peerDependencies": {
"karma": ">=5.x",
"mocha": ">=7.x"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}