-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 975 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
44
{
"name": "express-param",
"version": "1.9.1",
"description": "fetch expressjs params and check validation",
"main": "index.js",
"author": "Flitto Inc.",
"keywords": [
"express",
"parameters",
"fetch",
"querystring"
],
"repository": {
"type": "git",
"url": "https://github.com/flitto/express-param.git"
},
"bugs": {
"url": "https://github.com/flitto/express-param/issues"
},
"homepage": "https://www.flitto.com/",
"license": "MIT",
"dependencies": {
"geoip-lite": "^1.4.6",
"lodash": "^4.17.21",
"mcc-mnc-list": "^1.1.10"
},
"devDependencies": {
"body-parser": "^1.20.1",
"c8": "^7.12.0",
"chai": "^4.3.7",
"express": "^4.18.2",
"mocha": "^10.2.0",
"should": "^13.2.3",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm run test-cov",
"test-ci": "mocha",
"test-cov": "c8 --check-coverage node_modules/.bin/mocha"
}
}