1 | {
|
2 | "name": "simple-statistics",
|
3 | "version": "7.0.1",
|
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 | "cz-conventional-changelog": "^2.0.0",
|
18 | "documentation": "^9.1.1",
|
19 | "eslint": "^5.0.1",
|
20 | "eslint-plugin-prettier": "^3.0.0",
|
21 | "jsdoctest": "^1.7.1",
|
22 | "microbundle": "^0.9.0",
|
23 | "mocha": "^5.0.0",
|
24 | "prettier": "^1.15.3",
|
25 | "random-js": "^1.0.4",
|
26 | "standard-version": "^4.0.0",
|
27 | "tap": "^12.0.1",
|
28 | "typescript": "^2.5.3"
|
29 | },
|
30 | "scripts": {
|
31 | "release": "standard-version && sh ./scripts/update_website.sh",
|
32 | "test": "microbundle --name ss && npm run lint && tap --coverage test/*.test.js --jobs=4 && npm run jsdoctest",
|
33 | "build": "microbundle --name ss",
|
34 | "prepublish": "microbundle --name ss && ./scripts/update_readme.js",
|
35 | "prelint": "tsc",
|
36 | "lint": "eslint index.js src test",
|
37 | "postlint": "documentation lint src",
|
38 | "jsdoctest": "mocha --require jsdoctest dist/simple-statistics.js"
|
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 | "engines": {
|
48 | "node": "*"
|
49 | },
|
50 | "license": "ISC",
|
51 | "keywords": [
|
52 | "descriptive",
|
53 | "linear",
|
54 | "math",
|
55 | "probability",
|
56 | "regression",
|
57 | "statistics"
|
58 | ],
|
59 | "config": {
|
60 | "commitizen": {
|
61 | "path": "./node_modules/cz-conventional-changelog"
|
62 | }
|
63 | }
|
64 | }
|