-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
99 lines (99 loc) · 2.77 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
95
96
97
98
99
{
"name": "mochify",
"version": "9.2.0",
"description": "TDD with Browserify, Mocha, Headless Chrome and WebDriver",
"keywords": [
"mocha",
"browserify",
"watchify",
"headless",
"chromium",
"webdriver",
"selenium",
"saucelabs",
"tdd"
],
"author": "Maximilian Antoni <[email protected]> (http://maxantoni.de)",
"contributors": [
"Andrey Popp <[email protected]>",
"JP Richardson <[email protected]>",
"Jerome Gravel-Niquet <[email protected]>",
"Barney <[email protected]>",
"Daniel Davidson <[email protected]>",
"Fernando Lores <[email protected]>",
"Ryohei Ikegami <[email protected]>",
"Max Goodman <[email protected]>",
"Phil Jepsen <[email protected]>",
"Jacob Waller <[email protected]>",
"Dylan Fogarty-MacDonald <[email protected]>",
"Paul <[email protected]>",
"James Newell <[email protected]>",
"Adrian Chang <[email protected]>",
"Christopher Hiller <[email protected]>",
"Scott Corgan <[email protected]>",
"Chris Wheatley <[email protected]>",
"Moshe Kolodny <[email protected]>",
"Juha Hytönen <[email protected]>",
"Koki Takahashi <[email protected]>",
"Jonny Reeves <[email protected]>",
"Jarrett Cruger <[email protected]>",
"Tomer Lahav <[email protected]>",
"Wes <[email protected]>",
"Frederik Ring <[email protected]>",
"Phred <[email protected]>",
"Morgan Roderick <[email protected]>",
"Steffen André Langnes <[email protected]>",
"Albert Wang <[email protected]>"
],
"homepage": "https://github.com/mantoni/mochify.js",
"engines": {
"node": ">=12"
},
"bin": {
"mochify": "bin/cmd.js"
},
"main": "lib/mochify.js",
"scripts": {
"lint": "eslint .",
"watch": "mocha --watch",
"test": "mocha",
"posttest": "npm run lint",
"preversion": "npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/mochify.js.git"
},
"dependencies": {
"brout": "^1.3.0",
"browserify": "^16.5.2",
"consolify": "^2.1.0",
"coverify": "^1.5.1",
"glob": "^7.1.2",
"mime": "^2.3.1",
"min-wd": "^2.12.0",
"mocaccino": "^6.1.0",
"puppeteer": "^13.0.0",
"resolve": "^1.5.0",
"source-mapper": "^2.1.0",
"subarg": "^1.0.0",
"through2": "^2.0.0",
"watchify": "^4.0.0"
},
"devDependencies": {
"@studio/changes": "^2.0.1",
"eslint": "^7.13.0",
"mocha": "^9.2.0",
"tmp": "0.0.28"
},
"files": [
"bin",
"lib",
"fixture",
"README.md",
"LICENSE"
],
"license": "MIT"
}