-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
92 lines (92 loc) · 2.27 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
{
"name": "@mapequation/infomap",
"version": "2.8.0",
"description": "Infomap network clustering algorithm",
"browser": "index.js",
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"index.d.ts",
"arguments.d.ts",
"filetypes.d.ts",
"network.d.ts",
"LICENSE_GPLv3.txt"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"watch": "webpack --watch --config interfaces/js/webpack.config.js",
"build": "webpack --config interfaces/js/webpack.config.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/mapequation/infomap.git"
},
"keywords": [
"map equation",
"network analysis",
"community detection",
"clustering algorithm"
],
"author": {
"name": "mapequation",
"email": "[email protected]",
"url": "https://www.mapequation.org/about.html"
},
"maintainers": [
{
"name": "Daniel Edler"
},
{
"name": "Anton Holmgren"
},
{
"name": "Martin Rosvall"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mapequation/infomap/issues"
},
"homepage": "https://www.mapequation.org/infomap",
"devDependencies": {
"arraybuffer-loader": "^1.0.8",
"conventional-commits-parser": "^3.2.4",
"git-raw-commits": "^2.0.11",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"standard-version": "^9.3.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"standard-version": {
"bumpFiles": [
"package.json",
"package-lock.json",
{
"filename": "src/version.h",
"updater": "utils/update-version-h.js"
},
{
"filename": "CITATION.cff",
"updater": "utils/update-citation-cff.js"
}
]
},
"python": {
"url": "https://pypi.org/project/infomap/",
"homepage": "https://mapequation.github.io/infomap/",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
]
}
}