-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.06 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
{
"name": "webmonkey",
"version": "0.6.0",
"description": "Robust and versatile headless monkey testing for the modern web with reproducible steps, error alerts, strategy sharing and many other good things.",
"main": "./bin/index.mjs",
"bin": {
"wm": "bin/index.mjs",
"webmonkey": "bin/index.mjs"
},
"repository": "[email protected]:Wildhoney/Webmonkey.git",
"author": "Adam Timberlake <[email protected]>",
"license": "MIT",
"scripts": {
"build": "taskfile build",
"format": "taskfile format",
"test": "taskfile test",
"coverage": "taskfile coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn test",
"pre-push": "yarn format && yarn test"
}
},
"dependencies": {
"capitalize": "^2.0.3",
"chalk": "^4.1.0",
"delay": "^4.4.1",
"figlet": "^1.5.0",
"humps": "^2.0.1",
"marky": "^1.2.1",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"numeral": "^2.0.6",
"pluralize": "^8.0.0",
"puppeteer": "^5.5.0",
"ramda": "^0.27.1",
"starwars": "^1.0.1"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.8.3",
"coveralls": "^3.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.25",
"husky": "^4.3.8",
"nyc": "15.1.0",
"prettier": "^2.2.1",
"readlint": "^0.7.2",
"sinon": "^9.2.4",
"taskfile": "^0.10.0"
},
"ava": {
"failFast": true,
"require": [
"esm",
"core-js"
]
}
}