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
85 lines (85 loc) · 2.53 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
{
"name": "datavisyn-anatomogram",
"version": "0.0.3-SNAPSHOT",
"description": "body map renderer",
"homepage": "https://phovea.caleydo.org",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"url": "https://datavisyn.io"
},
"contributors": [
{
"name": "Samuel Gratzl",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/datavisyn/datavisyn-anatomogram/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/datavisyn-anatomogram.git"
},
"main": "build/anatomogram.js",
"typings": "build/typings/index.d.ts",
"files": [
"src",
"build",
"resources",
"typings",
"LICENSE_GXA_ANATOMOGRAM"
],
"scripts": {
"compile": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json",
"docs": "typedoc --options typedoc.json src",
"prebuild": "npm run test",
"build": "webpack -p --env prod",
"build:dev": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --inline --hot",
"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": "npm run compile",
"test": "test ! -d tests || karma start",
"posttest": "npm run lint",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"predist": "npm run build",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/datavisyn-anatomogram.tar.gz *"
},
"dependencies": {
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"lodash": "^4.17.2",
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"@types/jasmine": "2.5.40",
"awesome-typescript-loader": "^3.0.0-beta.17",
"css-loader": "^0.26.1",
"file-loader": "^0.9.0",
"jasmine": "^2.5.3",
"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",
"node-sass": "^4.1.1",
"react-addons-test-utils": "^15.0.0",
"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"
}
}