forked from krakenjs/reverend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 911 Bytes
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
{
"name": "reverend",
"version": "0.3.0",
"description": "Merge an express-style path string with data to create a valid path.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krakenjs/reverend.git"
},
"keywords": [
"express",
"path",
"merge",
"reverse"
],
"author": "Erik Toth <totherik@gmail.com>",
"contributors": [
"Eric Ferraiuolo <eferraiuolo@gmail.com>"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"devDependencies": {
"tape": "^2.10.2",
"istanbul": "^0.2.6",
"jshint": "^2.4.4"
},
"dependencies": {
"path-to-regexp": "^1.0.1"
}
}