UNPKG

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