-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 857 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
{
"name": "express-route-keeper",
"version": "0.1.6",
"description": "express route middleware for acls and parameter checker",
"main": "lib/routeKeeper.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/fantasywind/express-route-keeper.git"
},
"keywords": [
"express",
"acl",
"parameter",
"route",
"validation"
],
"author": "Chia Yu Pai",
"license": "MIT",
"bugs": {
"url": "https://github.com/fantasywind/express-route-keeper/issues"
},
"homepage": "https://github.com/fantasywind/express-route-keeper",
"dependencies": {
"core-js": "^2.2.1",
"debug": "^2.2.0",
"lodash": "^4.7.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0"
}
}