-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
85 lines (85 loc) · 2.5 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
{
"name": "netjsongraph.js",
"version": "0.1.3",
"description": "NetJson format data visualization",
"main": "index.js",
"scripts": {
"test": "jest --silent",
"dev": "webpack serve --open --mode development",
"start": "yarn dev",
"build": "webpack --progress --mode production",
"coverage": "jest --silent --coverage",
"coveralls": "jest --silent -f ./coverage/lcov.info && cat ./coverage/lcov.info | coveralls || echo 'no coverage file found'",
"precommit": "lint-staged",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"format": "prettier --write \"**/*.+(js|json|css|md)\"",
"format:check": "prettier -c \"**/*.+(js|json|css|md)\""
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"/node_modules/(?!(kdbush|echarts|zrender)/)",
"\\.pnp\\.[^\\/]+$"
],
"globalSetup": "./jest.global-setup.js",
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
}
},
"repository": "https://github.com/netjson/netjsongraph.js.git",
"author": "Federico Capoano <[email protected]> (https://openwisp.io)",
"contributors": [
"GeekPlux <[email protected]> (http://geekplux.com/)",
"Vaishnav Nair <[email protected]>"
],
"license": "BSD-3-Clause",
"keywords": [
"netjson",
"network",
"data",
"visualization"
],
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.12",
"acorn": "^8.11.3",
"copy-webpack-plugin": "^12.0.2",
"coveralls": "^3.1.1",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"echarts": "^5.3.3",
"echarts-gl": "^2.0.8",
"kdbush": "^4.0.2",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"zrender": "^5.3.2"
}
}