forked from xpepermint/koa-strong-params
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
64 lines (64 loc) · 1.31 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
57
58
59
60
61
62
63
64
{
"name": "strong-params",
"version": "1.0.0",
"description": "Rails-style strong parameters for javascript projects. (e.g. Express, Koa)",
"main": "index.js",
"scripts": {
"test": "standard && mocha --recursive ./spec"
},
"repository": {
"type": "git",
"url": "git://github.com/ssowonny/strong-params.git"
},
"keywords": [
"koa",
"express",
"parameter",
"parameters",
"param",
"params",
"strongparams",
"strong-params",
"strongparameters",
"strong-parameters",
"controller",
"controllers",
"route",
"routes",
"routing",
"router",
"rest",
"rails",
"security",
"filter",
"filtering",
"body",
"strong"
],
"author": "ssowonny",
"contributors": [
"simonratner",
"vellotis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ssowonny/strong-params/issues"
},
"homepage": "https://github.com/ssowonny/strong-params",
"devDependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-qs": "^2.0.0",
"mocha": "^6.2.3",
"request": "^2.40.0",
"should": "^11.1.0",
"sinon": "^1.17.5",
"standard": "^10.0.2"
},
"dependencies": {
"es6-object-assign": "^1.0.2",
"lodash": "^4.17.15"
}
}