-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.92 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
{
"name": "@medley/medley",
"version": "0.13.0",
"description": "Fast and modern web framework for Node.js",
"author": "Nathan Woltman <[email protected]>",
"license": "MIT",
"main": "medley.js",
"files": [
"medley.js",
"lib"
],
"engines": {
"node": ">=8.8.0"
},
"repository": "github:medleyjs/medley",
"homepage": "https://github.com/medleyjs/medley#readme",
"bugs": "https://github.com/medleyjs/medley/issues",
"keywords": [
"fast",
"modern",
"web",
"framework",
"router",
"api"
],
"tap": {
"browser": false,
"coverage": false,
"esm": false,
"files": [
"test/*.test.js",
"test/*/*.test.js"
],
"reporter": "classic",
"timeout": 10
},
"dependencies": {
"@medley/router": "^0.2.1",
"compile-json-stringify": "^0.1.2",
"debug": "^4.1.1",
"destroy": "^1.0.4",
"end-of-stream": "^1.4.4"
},
"devDependencies": {
"@nwoltman/eslint-config": "^0.6.0",
"JSONStream": "^1.3.5",
"autocannon": "^4.4.2",
"branch-comparer": "^0.4.0",
"concurrently": "^5.0.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"got": "^10.2.2",
"h2url": "^0.2.0",
"pre-commit": "^1.2.2",
"pump": "^3.0.0",
"send": "^0.17.1",
"streaming-json-stringify": "^3.1.0",
"tap": "^14.10.6"
},
"pre-commit": [
"lint"
],
"scripts": {
"bench": "branchcmp -r 2 -g -s \"npm run benchmark\"",
"benchmark": "concurrently -k -s first \"node ./benchmarks/basic.js\" \"npm run cannon\"",
"cannon": "autocannon -c 100 -d 5 -p 10 localhost:3000/",
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --ignore-pattern coverage .",
"test": "tap -J",
"coverage": "tap -J --cov --coverage-report=text --coverage-report=html",
"coveralls": "tap -j4 -c --cov --100",
"ci": "npm run lint && npm run coveralls",
"bumpMinor": "npm version minor -m \"v%s\""
}
}