This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "integration-testing-for-humans",
"version": "2.0.0",
"description": "Because humans are bad at writing Selenium tests and good at clicking stuff.",
"bin": "bin/humans.js",
"main": "dist/node/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ci": "npm run build && npm run lint",
"ci:commitlint": "commitlint-jenkins --pr-only",
"build": "del-cli dist/ && tsc",
"lint:eslint": "if command -v eslint_d >/dev/null; then eslint_d . --cache --ext=\".ts\"; else eslint . --cache; fi",
"lint": "npm run lint:eslint && tsc -p tsconfig-lint.json",
"watch": "tsc --watch",
"prepublishOnly": "npm run build && if [ \"$CI\" = \"\" ] && [ \"$npm_config_dry_run\" != true ]; then node -p \"JSON.parse(process.env.npm_package_config_manualPublishMessage)\"; exit 1; fi",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/integration-testing-for-humans.git"
},
"keywords": [
"integration",
"smoke",
"testing",
"tests",
"selenium",
"github",
"webhook",
"status",
"CI"
],
"author": "Jeff Wear <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/integration-testing-for-humans/issues"
},
"homepage": "https://github.com/mixmaxhq/integration-testing-for-humans#readme",
"dependencies": {
"express": "^4.14.0",
"github-webhook-handler": "^0.6.0",
"request": "^2.79.0",
"yargs": "^6.5.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@mixmaxhq/commitlint-jenkins": "^1.6.0",
"@mixmaxhq/jest-coverage-config": "^2.2.3",
"@mixmaxhq/prettier-config": "^1.0.2",
"@mixmaxhq/semantic-release-config": "^2.0.2",
"@mixmaxhq/ts-config": "^2.1.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-mixmax": "^5.1.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"semantic-release": "^17.4.7",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
}
}