-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.2 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
{
"files": [
"pathfinder_graph_reactome",
"__init__.py",
"__main__.py",
"build",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"scripts": {
"check": "flake8 --exclude=.git,venv,deploy,docs,__pycache__,node_modules",
"pretest": "npm run check",
"test": "test ! -d tests || python setup.py test",
"docs": "sphinx-apidoc -o docs -f ./pathfinder_graph_reactome && sphinx-build ./docs build/docs",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"build": "python build.py",
"predist": "npm run build && npm run docs",
"dist": "python setup.py bdist_egg && cd build && tar cvzf ../dist/pathfinder_graph_reactome.tar.gz *"
},
"name": "pathfinder_graph_reactome",
"description": "",
"homepage": "https://phovea.caleydo.org",
"version": "1.0.0-SNAPSHOT",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": ""
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Caleydo/pathfinder_graph_reactome/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Caleydo/pathfinder_graph_reactome.git"
}
}