-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "ml-sparse-matrix",
"version": "3.1.0",
"description": "Sparse matrix library",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run --coverage",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/sparse-matrix.git"
},
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/sparse-matrix/issues"
},
"homepage": "https://github.com/mljs/sparse-matrix#readme",
"dependencies": {
"ml-hash-table": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.27.0",
"eslint-config-cheminfo-typescript": "^18.0.1",
"mitata": "^1.0.34",
"ml-matrix": "^6.12.1",
"ml-spectra-processing": "^14.12.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}