-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "mocaccino",
"version": "6.1.0",
"description": "Mocha test runner as a Browserify plugin",
"keywords": [
"mocha",
"runner",
"stream",
"browserify-plugin"
],
"author": "Maximilian Antoni <mail@maxantoni.de> (http://maxantoni.de)",
"contributors": [
"Andrey Popp <8mayday@gmail.com>",
"Mikela Clemmons <glassresistor@gmail.com>",
"JP Richardson <jprichardson@gmail.com>",
"Daniel Davidson <contact@dannydavidson.com>",
"Matheus Kautzmann <kautzmann5@gmail.com>",
"Brad Buchanan <bradley.c.buchanan@gmail.com>",
"Tomer Lahav <tomer@interlude.fm>",
"Morgan Roderick <morgan@roderick.dk>",
"Christopher Hiller <boneskull@boneskull.com>"
],
"homepage": "https://github.com/mantoni/mocaccino.js",
"main": "./lib/mocaccino.js",
"engines": {
"node": ">=12"
},
"scripts": {
"watch": "mocha --watch",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --timeout 5000",
"preversion": "npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/mocaccino.js.git"
},
"dependencies": {
"brout": "^1.3.0",
"listen": "^1.0.0",
"mocha": "^9.2.0",
"resolve": "^1.8.1",
"supports-color": "^8.1.1",
"through2": "^4.0.2"
},
"devDependencies": {
"@studio/changes": "^2.2.0",
"browserify": "^16.2.3",
"coverify": "^1.4.1",
"eslint": "^8.5.0",
"mocha-jenkins-reporter": "^0.1.9",
"puppeteer": "^13.0.0"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"license": "MIT"
}