-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 901 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 901 Bytes
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
{
"name": "data-maestro",
"version": "0.6.0",
"description": "Flask, data layer service",
"main": "run.py",
"scripts": {
"server": "FLASK_APP=run.py FLASK_DEBUG=1 flask run --port=5010",
"powershell": "$env:FLASK_APP = 'run.py'; $env:FLASK_DEBUG = '1'; flask run",
"save": "pip freeze -l > requirements.txt ",
"test": "python -m unittest discover",
"package-flask": "docker build -t data-maestro .",
"docs": "apidoc -i app/controller/ -o docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maestro-server/data-api.git"
},
"keywords": [
"flask",
"python",
"maestro"
],
"author": "Felipe Signorini",
"license": "ISC",
"bugs": {
"url": "https://github.com/maestro-server/data-api/issues"
},
"homepage": "https://github.com/maestro-server/data-api#readme",
"dependencies": {
"apidoc": "^0.17.6"
}
}