-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "ml-sparse-matrix",
"version": "2.1.0",
"description": "Sparse matrix library",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "vitest run --coverage"
},
"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": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.10.0",
"eslint-config-cheminfo": "^11.1.1",
"ml-matrix": "^6.11.1",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"vitest": "^2.0.5"
}
}