-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.74 KB
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
{
"name": "cgview",
"version": "1.9.0",
"main": "dist/cgview.esm.js",
"type": "module",
"description": "CGView: Circular Genome Viewer",
"homepage": "https://js.cgview.ca",
"bugs": "https://github.com/sciguy/cgview-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/sciguy/cgview-js.git"
},
"files": [
"dist/**",
"CHANGELOG.md"
],
"keywords": [
"CGView",
"circular",
"genome",
"visualization",
"bioinformatics"
],
"scripts": {
"dev": "echo \"Error: no dev specified\" && exit 1",
"test": "jest --watch",
"build": "rollup --config --watch",
"benchmark": "yarn gh-pages && node scripts/benchmark.mjs",
"benchmark:ci": "node scripts/benchmark.mjs",
"benchmark:compare": "node scripts/benchmark-compare.mjs",
"benchmark:install": "playwright install --with-deps chromium",
"gh-test": "jest --silent",
"gh-pages": "rollup --config",
"api": "jsdoc --configure ./template/jsdoc_conf.json --template ./template/jaguarjs-jsdoc --destination ./docs/api --readme ./README.md"
},
"jest": {
"preset": "es-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"jest-canvas-mock"
],
"testMatch": [
"**/*.test.js"
],
"transformIgnorePatterns": [
"node_modules/(?!d3)/"
]
},
"browserslist": "> 1%, not dead",
"devDependencies": {
"@playwright/test": "^1.62.1",
"@rollup/plugin-json": "^4.1.0",
"es-jest": "^1.2.0",
"jest": "^27.0.4",
"jest-canvas-mock": "^2.3.1",
"jsdoc": "^4.0.4",
"rollup": "4.34.6",
"rollup-plugin-terser": "^7.0.2",
"taffydb": "^2.7.3"
},
"author": "Jason Grant",
"license": "Apache-2.0",
"dependencies": {
"d3": "7.0.1",
"svgcanvas": "^2.3.0"
}
}