-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.95 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.95 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "netjsongraph.js",
"version": "0.3.0",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"description": "NetJSON NetworkGraph visualizer",
"main": "dist/netjsongraph.min.js",
"module": "src/js/netjsongraph.js",
"sideEffects": true,
"files": [
"dist/",
"src/"
],
"resolutions": {
"eslint/**/brace-expansion": "1.1.14",
"minimatch/brace-expansion": "1.1.14",
"flatted": ">=3.4.2",
"follow-redirects": ">=1.16.0",
"form-data": ">=4.0.1",
"lodash": ">=4.18.1",
"minimatch": "3.1.5",
"glob/minimatch": "9.0.8",
"rimraf/minimatch": "9.0.8",
"path-to-regexp": "0.1.13",
"picomatch": ">=2.3.2",
"qs": ">=6.11.0",
"serialize-javascript": ">=7.0.5",
"smol-toml": ">=1.6.1",
"tough-cookie": ">=4.1.3",
"yaml": ">=2.8.3",
"eslint/**/ajv": "6.14.0",
"request/**/ajv": "6.14.0",
"har-validator/ajv": "6.14.0",
"webpack/**/ajv": ">=8.18.0",
"schema-utils/**/ajv": ">=8.18.0",
"ajv-formats/ajv": ">=8.18.0"
},
"scripts": {
"test": "jest --silent",
"dev": "webpack serve --open --mode development",
"start": "yarn dev",
"build": "yarn build:full",
"build:full": "webpack --progress --mode production --env BUILD_TYPE=full",
"build:full:stats": "STATS=true yarn build:full",
"build:echarts-only": "webpack --progress --mode production --env BUILD_TYPE=echarts-only",
"build:echarts-only:stats": "STATS=true yarn build:echarts-only",
"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",
"prepare": "yarn build:full"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
],
"**/*.html": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"/node_modules/(?!(kdbush|echarts|zrender)/)",
"\\.pnp\\.[^\\/]+$"
],
"globalSetup": "./jest.global-setup.js",
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
},
"coveragePathIgnorePatterns": [
"test/"
]
},
"repository": "https://github.com/netjson/netjsongraph.js.git",
"author": "Federico Capoano <f.capoano@openwisp.io> (https://openwisp.io)",
"contributors": [
"GeekPlux <geekplux@gmail.com> (http://geekplux.com/)",
"Vaishnav Nair <vaishnavnair365@gmail.com>"
],
"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": "^30.0.0",
"compression-webpack-plugin": "^12.0.0",
"copy-webpack-plugin": "^14.0.0",
"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": "^10.0.1",
"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",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.5",
"knip": "^6.2.0",
"lint-staged": "^16.1.0",
"prettier": "^3.6.2",
"selenium-webdriver": "^4.29.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^6.0.3",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.0.2",
"leaflet": "^1.8.0"
},
"dependencies": {
"echarts": "^6.0.0",
"kdbush": "^4.0.2"
},
"peerDependencies": {
"leaflet": "^1.8.0"
},
"peerDependenciesMeta": {
"leaflet": {
"optional": true
}
}
}