This repository has been archived by the owner on Sep 5, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.31 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
89
90
91
92
93
94
{
"name": "night-patrol",
"version": "2.1.15",
"description": "An Interactive Test Runner for Nightwatch",
"author": "Jahed Ahmed",
"license": "MIT",
"homepage": "https://github.com/jahed/night-patrol",
"repository": "https://github.com/jahed/night-patrol",
"keywords": [
"nightwatch",
"test",
"cli",
"interactive"
],
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"night-patrol": "bin/cli.js"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"test": "jest",
"build": "rm -rf lib && tsc",
"watch": "yarn build --watch",
"ready": "yarn lint && yarn test && yarn build",
"push": "git push --follow-tags",
"deploy": "yarn ready && standard-version && yarn publish --non-interactive && yarn push",
"deps": "yarn upgrade-interactive --latest && yarn upgrade && git add yarn.lock '*package.json' && git commit -m 'build(deps): upgrade dependencies'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"funding": [
{
"type": "Website",
"url": "https://jahed.dev/donate"
},
{
"type": "Patreon",
"url": "https://patreon.com/jahed"
},
{
"type": "PayPal",
"url": "https://paypal.me/jahed/5"
},
{
"type": "Liberapay",
"url": "https://liberapay.com/jahed"
}
],
"peerDependencies": {
"nightwatch": "^1.x"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"require-dir": "^1.2.0",
"reselect": "^4.0.0",
"stripcolorcodes": "^0.1.0",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/inquirer": "^6.0.3",
"@types/jest": "^26.0.8",
"@types/jest-diff": "^24.3.0",
"@types/lodash": "^4.14.158",
"@types/minimist": "^1.2.0",
"@types/nightwatch": "^1.3.0",
"@types/node": "^14.0.27",
"husky": "4.3.0",
"jest": "26.4.2",
"nightwatch": "1.4.3",
"standard-version": "9.0.0",
"ts-jest": "26.4.1",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typescript": "4.0.3"
},
"resolutions": {
"vorpal/inquirer/lodash": "4.17.20"
}
}