-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 960 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
{
"name": "express-contract",
"version": "2.0.0",
"description": "A middleware for express that to validate inputs of your REST API with Joi, or any validators.",
"main": "index.js",
"scripts": {
"test": "nodeunit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Dallas62/express-contract.git"
},
"keywords": [
"express",
"expressjs",
"api",
"rest",
"contract",
"interface",
"joi"
],
"author": "Tacyniak Boris <[email protected]> (https://www.tacyniak.fr/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dallas62/express-contract/issues"
},
"homepage": "https://github.com/Dallas62/express-contract#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"nodeunit": "^0.11.3",
"supertest": "^6.1.6"
},
"dependencies": {}
}