This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.97 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
{
"name": "tdp_gene",
"description": "",
"version": "12.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"homepage": "https://phovea.caleydo.org",
"bugs": {
"url": "https://github.com/caleydo/tdp_gene/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/caleydo/tdp_gene.git"
},
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"phovea_registry.js",
"dist"
],
"engines": {
"npm": ">= 6.12",
"node": ">= 12.13",
"iojs": ">= 3"
},
"scripts": {
"clean": "rimraf dist lib",
"delete-dependencies": "rimraf node_modules",
"compile": "tsc",
"compile:watch": "tsc -w",
"postcompile": "npm run copy",
"lint": "eslint --cache src/**/*.ts{,x} tests/**/*.ts{,x}",
"lint:fix": "eslint --fix --cache 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-assets": "if [ -d src/assets ]; then shx --verbose cp -R src/assets/. dist/assets/; fi",
"copy-styles": "if [ -d src/scss ]; then shx --verbose cp -R src/scss/. dist/scss/; fi",
"copy": "npm run copy-assets && npm run copy-styles",
"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/tdp_gene.tar.gz *"
},
"devDependencies": {
"@types/d3": "~3.5.36",
"@types/jquery": "~3.5.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "~3.0.0",
"jest-raw-loader": "~1.0.1",
"prettier": "^2.5.1",
"rimraf": "~3.0.2",
"shx": "~0.3.3",
"@types/jest": "~27.4.1",
"jest": "~27.5.1",
"ts-jest": "~27.1.3",
"tslib": "~2.3.1",
"typedoc": "~0.22.13",
"typescript": "~4.6.2"
},
"dependencies": {
"d3": "~3.5.17",
"jstat": "^1.9.4",
"jquery": "~3.5.1",
"jquery-ui": "1.12.1",
"tdp_core": "^16.2.2"
},
"optionalDependencies": {
"ordino": "git+ssh://[email protected]:Caleydo/ordino#semver:^13.0.1"
}
}