UNPKG

2.19 kBJSONView Raw
1{
2 "name": "simple-statistics",
3 "version": "7.8.0",
4 "description": "Simple Statistics",
5 "author": "Tom MacWright <tom@macwright.com> (https://macwright.com/)",
6 "repository": {
7 "type": "git",
8 "url": "git://github.com/simple-statistics/simple-statistics.git"
9 },
10 "files": [
11 "src",
12 "dist",
13 "LICENSE",
14 "index.js",
15 "index.d.ts"
16 ],
17 "devDependencies": {
18 "@rollup/plugin-buble": "^0.21.3",
19 "cz-conventional-changelog": "^3.3.0",
20 "documentation": "^13",
21 "eslint": "^8.26.0",
22 "eslint-plugin-import": "^2.26.0",
23 "eslint-plugin-prettier": "^4.2.1",
24 "prettier": "^2.7.1",
25 "random-js": "^2.1.0",
26 "rollup": "^2.77.3",
27 "rollup-plugin-terser": "^7.0.2",
28 "standard-version": "^9.5.0",
29 "tap": "^16.3.0",
30 "typescript": "^4.8.4"
31 },
32 "scripts": {
33 "release": "standard-version && sh ./scripts/update_website.sh",
34 "test": "rollup -c rollup.config.js && npm run lint && tap --lines 95 --branches 95 --functions 95 --statements 95 --coverage test/*.test.js --jobs=4",
35 "build": "rollup -c rollup.config.js",
36 "prepublish": "rollup -c rollup.config.js && ./scripts/update_readme.js",
37 "prelint": "tsc --skipLibCheck",
38 "lint": "eslint index.js src test && prettier --check src test \"!test/types.js\"",
39 "lint-fix": "eslint index.js src test --fix && prettier src test \"!test/types.js\" --write",
40 "postlint": "documentation lint src"
41 },
42 "source": "index.js",
43 "main": "dist/simple-statistics.js",
44 "module": "dist/simple-statistics.mjs",
45 "umd:main": "dist/simple-statistics.min.js",
46 "browser": "dist/simple-statistics.min.js",
47 "unpkg": "dist/simple-statistics.min.js",
48 "types": "index.d.ts",
49 "exports": {
50 "./package.json": "./package.json",
51 ".": {
52 "import": "./dist/simple-statistics.mjs",
53 "require": "./dist/simple-statistics.js",
54 "types": "./index.d.ts"
55 }
56 },
57 "engines": {
58 "node": "*"
59 },
60 "license": "ISC",
61 "keywords": [
62 "descriptive",
63 "linear",
64 "math",
65 "probability",
66 "regression",
67 "statistics"
68 ],
69 "config": {
70 "commitizen": {
71 "path": "./node_modules/cz-conventional-changelog"
72 }
73 }
74}