-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 903 Bytes
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
{
"name": "spektra",
"version": "1.0.3",
"keywords": ["math", "mathematics", "graph theory", "spectral graph theory", "eigen values", "eigen vectors", "laplacian matrix", "adjacency matrix", "cospectrality"],
"description": "A library for spectral graph theory.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"gts": "^3.1.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}