-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1002 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
{
"name": "api-lift",
"version": "8.2.0",
"author": "Sitegui <[email protected]>",
"description": "Create a ready-to-go express router for a REST API with filters, input validation, output checking, versioning, automatic routes and logging",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/clubedaentrega/api-lift"
},
"keywords": [
"express",
"rest",
"versioning",
"api",
"routing"
],
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"lift-it": "^7.1.0",
"validate-fields": "^5.1.1"
},
"license": "MIT",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha test -b --exit",
"docs": "rm -rf docs2 && jsdoc -d docs2 -c docs.json -R README.md -t jaguarjs-jsdoc",
"commit-docs": "npm run docs && git checkout gh-pages && rm -rf docs && mv docs2 docs && git add docs -A && git commit"
},
"devDependencies": {
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"request": "^2.88.0",
"should": "^13.2.3"
}
}