-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
33 lines (33 loc) · 835 Bytes
/
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
{
"name": "broadway",
"version": "4.1.0",
"description": "Lightweight App extensibility and hookable middleware customization.",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"url": "http://github.com/flatiron/broadway.git",
"type": "git"
},
"main": "./lib",
"engines": {
"node": ">= 8"
},
"devDependencies": {
"basic-auth": "^1.0.0",
"eslint-config-populist": "^4.2.0",
"express": "^4.12.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"dependencies": {
"create-servers": "^3.0.1",
"merge-descriptors": "^1.0.0",
"understudy": "^4.0.0"
},
"scripts": {
"mocha": "mocha -w -R spec",
"cover": "nyc mocha",
"pretest": "eslint --fix index.js test/ examples/",
"test": "npm run cover"
}
}