This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.57 KB
/
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
{
"name": "phovea_server",
"description": "DEPRECATED: Python server implementation of Phovea",
"version": "10.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"homepage": "https://phovea.caleydo.org",
"bugs": {
"url": "https://github.com/phovea/phovea_server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/phovea/phovea_server.git"
},
"files": [
"phovea_server",
"__init__.py",
"__main__.py",
"build",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"scripts": {
"start": "python phovea_server --use_reloader --env dev api",
"check": "flake8 --exclude=.git,venv,deploy,docs,__pycache__,node_modules",
"pretest": "npm run check",
"test": "test ! -d tests || python setup.py test",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"build": "rm -rf build/source && find . -name '*.pyc' -delete && node buildPython.js && cp -r ./phovea_server build/source/",
"predist": "npm run build && npm run docs",
"dist": "python setup.py sdist bdist_wheel",
"publish": "twine upload --repository-url https://upload.pypi.org/legacy/ dist/*",
"predocker": "npm run build",
"docker": "docker build -t phovea_server -f deploy/Dockerfile .",
"docker:dev": "docker build -t phovea_server -f deploy/Dockerfile_dev .",
"docs": "sphinx-apidoc -o docs -f ./phovea_server && sphinx-build ./docs build/docs"
}
}