This repository has been archived by the owner on Sep 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.15 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
{
"name": "snp_app",
"description": "",
"homepage": "https://phovea.caleydo.org",
"version": "1.0.0-SNAPSHOT",
"author": {
"name": "Samuel Gratzl",
"email": "samuel_gratzl@gmx.at",
"url": ""
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/datavisyn/snp_app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/snp_app.git"
},
"private": true,
"scripts": {
"predist": "echo hybrid",
"predocker": "npm run build",
"docker": "docker build -t snp_app -f deploy/Dockerfile .",
"check": "flake8",
"pretest": "echo hybrid",
"test": "npm run test:web && npm run test:python",
"docs": "npm run docs:web && npm run docs:python",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"build": "npm run build:web && npm run build:python",
"dist": "npm run dist:web && npm run dist:python",
"compile": "tsc",
"lint": "tslint -c tslint.json src/**.ts tests/**.ts",
"posttest": "echo hybrid",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"build:dev": "webpack",
"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",
"docs:web": "typedoc --options typedoc.json src/**.ts",
"docs:python": "echo todo creating docs...",
"pretest:web": "npm run compile",
"pretest:python": "npm run check",
"posttest:web": "npm run lint",
"test:web": "test ! -d tests || karma start",
"test:python": "test ! -d tests || python setup.py test",
"build:python": "python -c \"from distutils.dir_util import mkpath ; mkpath('./build/source')\" && (tar -c ./snp_app --exclude '*.pyc' | tar -xC build/source)",
"build:web": "webpack --env prod",
"predist:web": "npm run build",
"dist:web": "mkdirp dist && cd static && tar cvzf ../dist/snp_app.tar.gz *",
"dist:python": "python setup.py bdist_egg"
},
"files": [
"src",
"index.js",
"phovea.js",
"phovea_registry.js",
"build",
"snp_app",
"__init__.py",
"__main__.py",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"engines": {
"npm": ">= 3",
"node": ">= 6"
},
"dependencies": {
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"@types/d3-array": "^1.0.5",
"@types/material-ui": "^0.16.47",
"@types/react-tap-event-plugin": "0.0.30",
"@types/handlebars": "4.0.33",
"d3-array": "^1.0.1",
"datavisyn-scatterplot-react": "github:datavisyn/datavisyn-scatterplot-react#master",
"font-awesome": "^4.6.3",
"lineupjs": "github:Caleydo/lineupjs#master",
"mobx": "^2.6.0",
"mobx-react": "^3.5.8",
"mobx-react-devtools": "^4.2.9",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"datavisyn-anatomogram": "github:datavisyn/datavisyn-anatomogram#master",
"material-ui": "^0.16.7",
"react-tap-event-plugin": "^2.0.1",
"datavisyn_ui": "github:datavisyn/datavisyn_ui#master"
},
"devDependencies": {
"@types/jasmine": "2.5.35",
"awesome-typescript-loader": "3.0.0-beta.17",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"extract-loader": "0.0.2",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"imports-loader": "0.6.5",
"jasmine": "2.5.2",
"json-loader": "0.5.4",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-junit-reporter": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"mkdirp": "0.5.1",
"node-sass": "4.1.1",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"tslint": "4.2.0",
"typedoc": "0.5.3",
"typescript": "2.1.5",
"url-loader": "0.5.7",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
}
}