This repository has been archived by the owner on Dec 27, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.24 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
{
"name": "taggle",
"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/Caleydo/taggle/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Caleydo/taggle.git"
},
"private": true,
"scripts": {
"predist": "npm run build && npm run docs",
"predocker": "npm run build",
"docker": "docker build -t taggle2 -f deploy/Dockerfile .",
"compile": "tsc",
"lint": "tslint --project tsconfig.json --type-check -c tslint.json && stylelint src/**/*.scss",
"docs": "typedoc --options typedoc.json src",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"pretest": "npm run compile",
"test": "node -e \"require('fs').existsSync('./tests')?0:1\" || 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",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/taggle.tar.gz *"
},
"files": [
"src",
"index.js",
"phovea.js",
"phovea_registry.js",
"build"
],
"engines": {
"npm": ">= 3",
"node": ">= 6"
},
"devDependencies": {
"@types/jasmine": "^2.5.54",
"awesome-typescript-loader": "^3.2.3",
"css-loader": "^0.28.7",
"extract-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"imports-loader": "^0.7.1",
"jasmine": "^2.8.0",
"jasmine-promises": "^0.4.1",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.3",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.1.0",
"tslint": "^5.7.0",
"tslint-consistent-codestyle": "^1.6.0",
"tslint-eslint-rules": "^4.1.1",
"typedoc": "^0.8.0",
"typescript": "^2.5.2",
"uglify-es": "^3.0.28",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"@types/d3": "3.5.36",
"@types/d3-dsv": "^1.0.30",
"d3": "3.5.17",
"d3-dsv": "^1.0.5",
"font-awesome": "^4.7.0",
"lineupengine": "github:sgratzl/lineupengine",
"lineupjs": "github:Caleydo/lineupjs#develop",
"select2": "4.0.4",
"@types/select2": "4.0.41",
"@types/jquery": "2.0.33",
"jquery": "3.1.1"
}
}