-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "ml-confusion-matrix",
"version": "2.0.0",
"description": "Confusion matrix for supervised classification",
"main": "lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier && npm run check-types",
"test-coverage": "jest --coverage",
"test-only": "jest",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/confusion-matrix.git"
},
"keywords": [],
"author": "Daniel Kostro",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/confusion-matrix/issues"
},
"homepage": "https://github.com/mljs/confusion-matrix#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.4",
"codecov": "^3.8.2",
"eslint": "^8.29.0",
"eslint-config-cheminfo-typescript": "^11.2.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
}
}