-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.26 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
{
"name": "@geneontology/web-components",
"version": "0.0.2",
"description": "Web components for display of Gene Ontology annotations",
"type": "module",
"author": {
"name": "The Gene Ontology Consortium",
"url": "https://geneontology.org",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/geneontology/web-components.git"
},
"bugs": {
"url": "https://github.com/geneontology/web-components/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/web-components/web-components.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/web-components/web-components.esm.js",
"require": "./dist/web-components/web-components.js"
},
"./*": {
"types": "./dist/components/*.d.ts",
"import": "./dist/components/*.js"
},
"./loader": {
"types": "./loader/index.d.ts",
"import": "./loader/index.js",
"require": "./loader/index.cjs"
}
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"format": "prettier --write --log-level warn .",
"lint": "eslint src",
"start": "stencil build --dev --watch --serve --no-open",
"test": "stencil test --spec --e2e",
"test.unit": "stencil test --spec",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"dependencies": {
"@geneontology/dbxrefs": "^1.0.16",
"bbop-graph-noctua": "^0.0.35",
"cytoscape": "3.16.1",
"cytoscape-dagre": "2.4.0",
"graphlib": "^2.1.8",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stencil/core": "4.10.0",
"@stencil/sass": "3.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "3.3.3",
"puppeteer": "^23.9.0",
"typescript": "5.3.3",
"typescript-eslint": "^8.15.0"
},
"license": "MIT"
}