-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1004 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
{
"name": "@small-tech/web-routes-from-files",
"version": "3.1.0",
"description": "Recursively traverses a given directory structure and uses convention to create a list of web route objects that map url paths to JavaScript callback files.",
"keywords": [
"files",
"routes",
"directory",
"map",
"web",
"paths",
"callback",
"express",
"middleware",
"small tech"
],
"main": "index.js",
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"repository": {
"type": "git",
"url": "https://source.small-tech.org/site.js/lib/web-routes-from-files.git"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "tape test/*.js | tap-spec"
},
"author": {
"name": "Aral Balkan",
"email": "[email protected]",
"url": "https://ar.al"
},
"license": "AGPL-3.0-or-later",
"devDependencies": {
"express": "^4.16.4",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
}
}