-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.05 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@memgraph/orb",
"version": "1.0.1",
"description": "Graph visualization library",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/memgraph/orb.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
{
"name": "David Lozic",
"url": "https://github.com/cizl"
},
{
"name": "Toni Lastre",
"url": "https://github.com/tonilastre"
},
{
"name": "Oleksandr Ichenskyi",
"url": "https://github.com/AlexIchenskiy"
}
],
"author": "Memgraph Ltd. <contact@memgraph.com>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"build:release": "tsc && webpack",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"serve": "http-server ./dist/browser/ -o -c-1 -p 8082",
"test": "jest --runInBand --detectOpenHandles --forceExit --verbose --useStderr",
"coverage": "npm test -- --coverage --collectCoverageFrom='./src/**'",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "semantic-release",
"prepare": "husky"
},
"dependencies": {
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"leaflet": "^1.9.4"
},
"files": [
"dist",
"!dist/browser/*.html",
"!dist/browser/orb.js",
"!dist/browser/orb.worker.js",
"!dist/browser/orb.worker.vendor.js",
"LICENSE",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/d3-drag": "^3.0.1",
"@types/d3-ease": "^3.0.0",
"@types/d3-force": "^3.0.3",
"@types/d3-selection": "^3.0.1",
"@types/d3-transition": "^3.0.1",
"@types/d3-zoom": "^3.0.1",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.4",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"conventional-changelog-eslint": "^6.1.0",
"copy-webpack-plugin": "^14.0.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jest": "^30.4.2",
"prettier": "^3.9.6",
"semantic-release": "^25.0.8",
"ts-jest": "^29.1.2",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.109.1",
"webpack-cli": "^7.2.1",
"webpack-dev-server": "^6.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "coverage",
"testEnvironment": "node",
"testTimeout": 5000
}
}