-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "tdp_core",
"description": "Target discovery platform for exploring rankings of genes, disease models, and other entities.",
"version": "6.0.1-SNAPSHOT",
"author": {
"name": "datavisyn",
"email": "contact@datavisyn.io",
"url": "https://www.datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://www.datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/tdp_core/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/tdp_core.git"
},
"private": true,
"files": [
"src",
"index.js",
"phovea.js",
"phovea_registry.js",
"build",
"tdp_core",
"__init__.py",
"__main__.py",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt",
"redhat_packages.txt"
],
"engines": {
"npm": ">= 3",
"node": ">= 6",
"iojs": ">= 3"
},
"scripts": {
"check": "flake8 --exclude=.git,venv,deploy,docs,__pycache__,node_modules",
"pretest": "echo hybrid",
"test": "npm run test:web && npm run test:python",
"predist": "echo hybrid",
"dist": "npm run dist:web && npm run dist:python",
"compile": "tsc",
"lint": "tslint -c tslint.json -p .",
"docs": "npm run docs:web && npm run docs:python",
"prebuild": "echo hybrid",
"posttest": "echo hybrid",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"build:dev": "webpack",
"build": "npm run build:web && npm run build:python",
"start": "webpack-dev-server --inline",
"start:hot": "webpack-dev-server --inline --hot",
"watch": "webpack --watch",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"pretest:web": "npm run compile",
"pretest:python": "npm run check",
"posttest:web": "npm run lint",
"test:web": "test ! $(find tests -name \"*.ts\") || karma start",
"test:python": "test ! $(find tests -name \"*.py\") || python setup.py test",
"predist:web": "npm run build:web && npm run docs:web",
"dist:web": "mkdirp dist && cd build && tar cvzf ../dist/tdp_core.tar.gz *",
"dist:python": "python setup.py sdist bdist_wheel",
"predocker": "npm run build",
"docker": "docker build -t tdp_core -f deploy/Dockerfile .",
"docs:web": "typedoc --options typedoc.json src/**.ts",
"docs:python": "sphinx-apidoc -o docs -f ./tdp_core && sphinx-build ./docs build/docs",
"build:python": "rm -rf build/source && find . -name '*.pyc' -delete && node buildPython.js && cp -r ./tdp_core build/source/",
"build:web": "webpack --env prod",
"predist:python": "npm run build:python && npm run docs:python",
"prebuild:python": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test:python",
"prebuild:web": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test:web"
},
"dependencies": {
"@types/d3": "3.5.36",
"@types/select2": "4.0.41",
"d3": "3.5.17",
"lineupjs": "^3.2.2",
"phovea_clue": "^2.2.0",
"select2": "4.0.4",
"select2-bootstrap-theme": "0.1.0-beta.9",
"@types/jquery": "2.0.33",
"jquery": "3.1.1"
},
"main": "build/tdp_core.js",
"devDependencies": {
"@types/jasmine": "2.5.47",
"awesome-typescript-loader": "3.1.2",
"css-loader": "0.28.0",
"extract-loader": "0.1.0",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-loader": "0.4.5",
"imports-loader": "0.7.1",
"jasmine": "2.5.3",
"json-loader": "0.5.4",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.1",
"karma-jasmine": "1.1.0",
"karma-junit-reporter": "2.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mkdirp": "0.5.1",
"node-sass": "4.7.2",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "6.0.7",
"style-loader": "0.16.1",
"tslib": "1.9.0",
"tslint": "5.9.1",
"typedoc": "0.11.1",
"typescript": "2.7.2",
"url-loader": "0.5.8",
"webpack": "2.3.3",
"webpack-dev-server": "2.4.2",
"cache-loader": "1.2.0",
"ifdef-loader": "2.0.0",
"fork-ts-checker-webpack-plugin": "0.4.1",
"thread-loader": "1.1.2",
"ts-loader": "4.0.1"
}
}