This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.62 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
{
"main": "build/phovea_vis_scatterplot.js",
"files": [
"src",
"index.js",
"phovea.js",
"phovea_registry.js",
"build"
],
"engines": {
"npm": ">= 3",
"node": ">= 6"
},
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json src/**.ts tests/**.ts",
"docs": "typedoc --options typedoc.json src/**.ts",
"prebuild": "npm run test",
"pretest": "npm run compile",
"test": "karma start",
"posttest": "npm run lint",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"build:dev": "webpack",
"build": "webpack --env prod",
"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",
"predist": "npm run build",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/phovea_vis_scatterplot.tar.gz *"
},
"devDependencies": {
"@types/jasmine": "2.5.35",
"awesome-typescript-loader": "2.2.4",
"css-loader": "0.25.0",
"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": "3.10.0",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"tslint": "3.15.1",
"typedoc": "0.5.1",
"typescript": "2.0.6",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.26",
"webpack-dev-server": "2.1.0-beta.10"
},
"dependencies": {
"phovea_core": "github:phovea/phovea_core",
"datavisyn-scatterplot": "github:datavisyn/datavisyn-scatterplot"
},
"name": "phovea_vis_scatterplot",
"description": "phovea datavisyn-scatterplot binding",
"homepage": "https://phovea.caleydo.org",
"version": "0.0.1-SNAPSHOT",
"author": {
"name": "Samuel Gratzl",
"email": "samuel_gratzl@gmx.at",
"url": ""
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/datavisyn/phovea_vis_scatterplot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/phovea_vis_scatterplot.git"
}
}