-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.07 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
{
"name": "@medley/router",
"version": "0.2.1",
"description": "A high-performance URL router",
"author": "Nathan Woltman <[email protected]>",
"license": "MIT",
"main": "Router.js",
"files": [
"Router.js"
],
"engines": {
"node": ">=8"
},
"repository": "github:medleyjs/router",
"homepage": "https://github.com/medleyjs/router",
"bugs": "https://github.com/medleyjs/router/issues",
"keywords": [
"router",
"fast",
"performance",
"url"
],
"eslintIgnore": [
"coverage/"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"dependencies": {
"object-treeify": "^1.1.20"
},
"devDependencies": {
"@nwoltman/eslint-config": "~0.5.1",
"benchmark": "^2.1.4",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"scripts": {
"lint": "eslint .",
"test": "eslint . && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}