-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 820 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
{
"name": "@tamia-web/tamia",
"version": "2.0.0",
"description": "API REST server",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive \"./**/test/**/*.spec.js\"",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinbalicot/tamia.git"
},
"bugs": {
"url": "https://github.com/kevinbalicot/tamia/issues"
},
"homepage": "https://github.com/kevinbalicot/tamia#readme",
"keywords": [
"API"
],
"author": "Kevin Balicot <kevinbalicot@gmail.com>",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.0"
},
"devDependencies": {
"body-parser": "^1.19.0",
"connect": "^3.7.0",
"dotenv": "^8.2.0",
"mocha": "^8.2.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1"
}
}