-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 975 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@rill/unhandled",
"description": "Build Rill middleware that only run on unhandled requests.",
"version": "1.1.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/rill-js/unhandled/issues",
"devDependencies": {
"mocha": "^3.0.2",
"rill": "^5.0.11",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"homepage": "https://github.com/rill-js/unhandled",
"keywords": [
"404",
"isomorphic",
"middleware",
"not found",
"rill",
"unhandled",
"universal"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/unhandled"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint && mocha ./test/**/*.test.js"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}