-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "@lgodard/outliers-interquartile-range",
"version": "1.0.4",
"description": "Suggests outliers based on IQR",
"author": "Laurent Godard (https://github.com/lgodard)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lgodard/outliers-interquartile-range"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.18.0"
},
"main": "src/index.js",
"scripts": {
"test": "npm run test:unit",
"test:ci": "npm run lint && npm run test:unit",
"test:unit": "NODE_ENV=test mocha --check-leaks test/unit/**/*.test.js",
"test:coverage": "NODE_ENV=test nyc --nycrc-path=nycrc.json --cache-dir=/tmp/temp-outliers-iqr mocha test/unit/**/*.test.js --check-leaks --exit",
"posttest": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"ncu": "npx npm-check-updates"
},
"dependencies": {
"summary": "^2.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.11.0",
"mocha": "^10.7.3",
"npm-check-updates": "^17.1.3",
"nyc": "^17.1.0",
"should": "^13.2.3"
}
}