-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "express-slash",
"description": "Express middleware for people who are anal about trailing slashes.",
"version": "2.0.1",
"homepage": "https://github.com/ericf/express-slash",
"keywords": [
"express",
"express3",
"url",
"urls",
"slash",
"trailing",
"slashes",
"route",
"routes",
"routing",
"modown"
],
"author": {
"name": "Eric Ferraiuolo",
"email": "eferraiuolo@gmail.com",
"url": "http://ericf.me/"
},
"contributors": [
{
"name": "Bala Clark",
"email": "balaclark@gmail.com",
"url": "http://balaclark.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ericf/express-slash.git"
},
"bugs": {
"url": "https://github.com/ericf/express-slash/issues"
},
"dependencies": {},
"devDependencies": {
"mocha": "^1.20.1",
"istanbul": "^0.2.14",
"express": "^4.4.5",
"supertest": "^0.13.0"
},
"main": "index",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test -- --reporter spec"
}
}