-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.17 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
50
51
52
53
54
55
56
{
"name": "koa-strong-params",
"version": "0.0.3",
"description": "Rails-style implementation of strong parameters for Koa",
"main": "index.js",
"scripts": {
"test": "node --harmony ./node_modules/jasmine-node/bin/jasmine-node ./spec --verbose"
},
"engines": {
"node": ">= 0.11.9"
},
"repository": {
"type": "git",
"url": "git://github.com/xpepermint/koa-strong-params.git"
},
"keywords": [
"koa",
"parameter",
"parameters",
"param",
"params",
"strongparams",
"strong-params",
"strongparameters",
"strong-parameters",
"controller",
"controllers",
"route",
"routes",
"routing",
"router",
"rest",
"rails",
"security",
"filter",
"filtering",
"body",
"strong"
],
"author": "xpepermint",
"license": "MIT",
"bugs": {
"url": "https://github.com/xpepermint/koa-strong-params/issues"
},
"homepage": "https://github.com/xpepermint/koa-strong-params",
"devDependencies": {
"jasmine-node": "^2.0.0",
"koa": "^0.10.0",
"koa-bodyparser": "^1.0.1",
"koa-qs": "^1.0.0",
"request": "^2.40.0"
},
"dependencies": {
"lodash": "^2.4.1"
}
}