forked from josoriom/univariate-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "univariate-tests",
"version": "0.0.9",
"description": "Univariate tests",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"keywords": [],
"author": "Wargner M, Javier Osorio M.",
"license": "MIT",
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"build": "npm run tsc && cheminfo-build",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src --cache",
"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": "npm run test-only -- --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/josoriom/univariate-tests.git"
},
"bugs": {
"url": "https://github.com/josoriom/univariate-tests/issues"
},
"homepage": "https://github.com/josoriom/univariate-tests#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"cheminfo-build": "^1.1.11",
"eslint": "^8.0.1",
"eslint-config-cheminfo-typescript": "^10.1.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"jest-matcher-deep-close-to": "^2.0.1",
"ml-array-max": "^1.2.3",
"ml-array-mean": "^1.1.5",
"ml-array-min": "^1.2.2",
"ml-array-standard-deviation": "^1.1.7",
"ml-spectra-processing": "^6.8.0"
},
"directories": {
"lib": "lib"
}
}