-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
107 lines (107 loc) · 2.79 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@memgraph/orb",
"version": "0.4.3",
"description": "Graph visualization library",
"engines": {
"node": ">=16.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"
}
],
"author": "Memgraph Ltd. <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"build:release": "tsc && webpack",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"serve": "http-server ./dist/browser/",
"test": "jest --runInBand --detectOpenHandles --forceExit --verbose --useStderr",
"coverage": "npm test -- --coverage --collectCoverageFrom='./src/**'",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "semantic-release --branches main",
"prepare": "husky install"
},
"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.8.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "17.0.0",
"@commitlint/config-conventional": "17.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.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": "27.4.1",
"@types/leaflet": "1.7.9",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"conventional-changelog-eslint": "3.0.9",
"copy-webpack-plugin": "^11.0.0",
"eslint": "8.15.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.2.2",
"eslint-plugin-prettier": "4.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"jest": "27.5.1",
"prettier": "^2.7.1",
"semantic-release": "19.0.3",
"ts-jest": "27.1.4",
"ts-loader": "^9.3.1",
"ts-node": "10.8.0",
"typescript": "4.6.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "coverage",
"testEnvironment": "node",
"testTimeout": 5000
}
}