This repository has been archived by the owner on Jun 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.82 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
{
"name": "phovea_vis_lineup",
"description": "A visualization plugin for tables using LineUp.js",
"homepage": "http://www.caleydo.org/tools/lineup/",
"version": "1.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/phovea/phovea_vis_lineup/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/phovea/phovea_vis_lineup.git"
},
"main": "build/phovea_vis_lineup.js",
"files": [
"src",
"index.js",
"phovea.js",
"phovea_registry.js",
"build"
],
"engines": {
"npm": ">= 3",
"node": ">= 6",
"iojs": ">= 3"
},
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json src/**.ts tests/**.ts",
"docs": "typedoc --options typedoc.json src/**.ts",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"pretest": "npm run compile",
"test": "test ! -d tests || 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 && npm run docs",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/phovea_vis_lineup.tar.gz *"
},
"dependencies": {
"phovea_core": "github:phovea/phovea_core#develop",
"font-awesome": "4.6.3",
"lineupjs": "github:Caleydo/lineupjs#master",
"@types/d3": "3.5.36",
"d3": "3.5.17"
},
"devDependencies": {
"@types/jasmine": "2.5.41",
"awesome-typescript-loader": "3.0.3",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"file-loader": "0.10.0",
"html-loader": "0.4.4",
"imports-loader": "0.7.0",
"jasmine": "2.5.3",
"json-loader": "0.5.4",
"karma": "1.4.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-junit-reporter": "2.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"node-sass": "4.5.0",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "5.0.0",
"style-loader": "0.13.1",
"tslint": "4.4.2",
"typedoc": "0.5.5",
"typescript": "2.2.0",
"url-loader": "0.5.7",
"webpack": "2.2.1",
"webpack-dev-server": "2.3.0",
"mkdirp": "0.5.1",
"extract-loader": "0.1.0",
"tslib": "1.5.0"
}
}