-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.86 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
{
"name": "networkanalysis-ts",
"version": "1.0.0",
"description": "TypeScript port of the Java networkanalysis package that provides data structures and algorithms for network analysis.",
"author": "Nees Jan van Eck <[email protected]> (https://github.com/neesjanvaneck)",
"keywords": [
"network analysis",
"clustering",
"community detection",
"clustering algorithm",
"Leiden algorithm",
"Louvain algorithm",
"layout",
"mapping",
"layout algorithm",
"VOS technique",
"typescript"
],
"license": "MIT",
"homepage": "https://github.com/neesjanvaneck/networkanalysis-ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/neesjanvaneck/networkanalysis-ts.git"
},
"bugs": {
"url": "https://github.com/neesjanvaneck/networkanalysis-ts/issues"
},
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.app.js --watch",
"build:app": "rm -rf dist && cross-env NODE_ENV=production rollup --config rollup.config.app.js",
"build:lib": "rm -rf lib && rollup --config rollup.config.lib.js && cp ./package.json ./LICENSE ./README.md ./lib",
"build": "npm run build:lib && npm run build:app",
"docs": "npx typedoc --options typedoc.json",
"lint": "eslint ./src ./app --ext .ts,.svelte --ignore-path .gitignore",
"publish:lib": "cd ./lib && npm publish && rm -rf .cache"
},
"dependencies": {
"java-random": "^0.4.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/d3": "^7.4.0",
"@types/papaparse": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cross-env": "^7.0.3",
"d3": "^7.6.1",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-svelte3": "^2.7.3",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"papaparse": "^5.3.0",
"rollup": "^2.33.1",
"rollup-plugin-html2": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{ts,svelte}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}