-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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": [
"my_server_app",
"__init__.py",
"__main__.py",
"build",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"scripts": {
"check": "flake8",
"pretest": "npm run check",
"test": "test ! -d tests || python setup.py test",
"docs": "sphinx-apidoc -o docs -f ./my_server_app && 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/my_server_app.tar.gz *"
},
"name": "my_server_app",
"description": "",
"homepage": "https://phovea.caleydo.org",
"version": "1.0.0-SNAPSHOT",
"author": {
"name": "Caleydo Team",
"email": "",
"url": ""
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/phovea/my_server_app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/phovea/my_server_app.git"
}
}