forked from simple-statistics/simple-statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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": "simple-statistics",
"version": "6.1.0",
"description": "Simple Statistics",
"author": "Tom MacWright <tom@macwright.org> (http://macwright.org/)",
"repository": {
"type": "git",
"url": "git://github.com/simple-statistics/simple-statistics.git"
},
"files": [
"src",
"dist",
"index.js",
"index.d.ts"
],
"devDependencies": {
"are-we-flow-yet": "^1.1.1",
"cz-conventional-changelog": "^2.0.0",
"documentation": "^8.0.0",
"eslint": "^5.0.1",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.79.1",
"jsdoctest": "^1.7.1",
"microbundle": "^0.6.0",
"mocha": "^5.0.0",
"prettier": "^1.14.2",
"random-js": "^1.0.4",
"standard-version": "^4.0.0",
"tap": "^12.0.1",
"typescript": "^2.5.3"
},
"scripts": {
"release": "standard-version && sh ./scripts/update_website.sh",
"test": "microbundle && npm run lint && tap --coverage test/*.test.js --jobs=4 && npm run jsdoctest",
"build": "microbundle",
"prepublish": "microbundle && ./scripts/update_readme.js",
"prelint": "are-we-flow-yet src && flow check src && tsc",
"lint": "eslint index.js src test",
"postlint": "documentation lint src",
"jsdoctest": "mocha --require jsdoctest dist/simple-statistics.js"
},
"source": "index.js",
"main": "dist/simple-statistics.js",
"module": "dist/simple-statistics.mjs",
"main:umd": "dist/simple-statistics.min.js",
"browser": "dist/simple-statistics.min.js",
"unpkg": "dist/simple-statistics.min.js",
"types": "index.d.ts",
"engines": {
"node": "*"
},
"license": "ISC",
"keywords": [
"descriptive",
"linear",
"math",
"probability",
"regression",
"statistics"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}