This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.56 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
{
"name": "taco",
"description": "DEPRECATED: Comparative visualization of large tabular data using Phovea",
"version": "7.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"homepage": "http://taco.caleydo.org",
"bugs": {
"url": "https://github.com/caleydo/taco/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Caleydo/taco.git"
},
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"phovea_registry.js",
"dist"
],
"engines": {
"npm": ">= 6.12",
"node": ">= 12.13"
},
"scripts": {
"clean": "rimraf lib dist",
"delete-dependencies": "rimraf node_modules",
"compile": "tsc",
"compile:watch": "tsc -w",
"postcompile": "npm run copy",
"lint": "tslint -c tslint.json -p . 'src/**/*.ts?(x)' 'tests/**/*.ts?(x)'",
"docs": "typedoc --options typedoc.json src/**.ts",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"build": "npm run clean && npm run compile",
"copy": "npm run copy-assets && npm run copy-styles && npm run copy-app-assets",
"copy-assets": "if [ -d src/assets ]; then shx --verbose cp -R src/assets/. dist/assets/; fi",
"copy-app-assets": "shx --verbose cp src/*.txt dist/ | true && shx --verbose cp src/*.html dist/ | true && shx --verbose cp src/*.ejs dist/ | true",
"copy-styles": "if [ -d src/scss ]; then shx --verbose cp -R src/scss/. dist/scss/; fi",
"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": "mkdir lib && cd dist && tar cvzf ../lib/taco.tar.gz *",
"predocker": "npm run build",
"docker": "docker build -t taco -f deploy/Dockerfile ."
},
"devDependencies": {
"@types/jest": "~26.0.18",
"identity-obj-proxy": "~3.0.0",
"jest": "~26.6.3",
"jest-raw-loader": "~1.0.1",
"rimraf": "~3.0.2",
"shx": "~0.3.3",
"ts-jest": "~26.4.4",
"tslib": "~2.0.3",
"tslint": "~5.20.1",
"typedoc": "~0.19.2",
"typescript": "~3.9.7"
},
"dependencies": {
"jquery-ui": "1.12.1",
"moment": "~2.29.1",
"phovea_ui": "^8.0.0",
"phovea_vis": "^7.0.0"
}
}