-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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
{
"name": "forcegraph",
"version": "1.0.0",
"description": "Modern force-directed graph visualization library using D3.js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "webpack --mode development --watch",
"start": "webpack serve --mode development --open",
"build": "webpack --mode production",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"format": "prettier --write \"src/**/*.{js,ts,json,css,md}\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"neo4j",
"d3.js",
"d3",
"graph",
"visualization",
"force-directed",
"network",
"chart",
"svg"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Degooya/force-graph.git"
},
"author": {
"name": "Robert Rieser",
"url": "https://github.com/Degooya"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Degooya/force-graph/issues"
},
"homepage": "https://github.com/Degooya/force-graph#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@types/d3": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"typescript": "^5.2.2",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"d3": "^7.8.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}