forked from simple-statistics/simple-statistics
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "simple-statistics",
"version": "4.1.0",
"description": "Simple Statistics",
"author": "Tom MacWright <[email protected]> (http://macwright.org/)",
"repository": {
"type": "git",
"url": "git://github.com/simple-statistics/simple-statistics.git"
},
"files": [
"bower.json",
"src",
"dist"
],
"dependencies": {},
"devDependencies": {
"are-we-flow-yet": "^1.0.0",
"browserify": "^14.1.0",
"bundle-collapser": "^1.0.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.8.1",
"exorcist": "^0.4.0",
"flow-bin": "^0.44.0",
"jsdoctest": "1.7.0",
"mocha": "3.3.0",
"random-js": "^1.0.4",
"standard-changelog": "^1.0.1",
"standard-version": "^4.0.0",
"tap": "^10.1.1",
"uglify-js": "^2.6.2"
},
"scripts": {
"release": "standard-version && sh ./scripts/update_website.sh",
"test": "are-we-flow-yet src && flow check src && eslint index.js src/*.js test/*.js && tap --coverage test/*.js && npm run jsdoctest",
"test-sauce": "node scripts/browser_test.js",
"build": "npm run bundle && npm run minify",
"changelog": "standard-changelog -i CHANGELOG.md --overwrite",
"prepublish": "npm run build && ./scripts/update_readme.js",
"bundle": "mkdir -p dist && browserify -p bundle-collapser/plugin -s ss index.js --debug | exorcist dist/simple-statistics.js.map > dist/simple-statistics.js",
"minify": "uglifyjs dist/simple-statistics.js -c -m --in-source-map=dist/simple-statistics.js.map --source-map=dist/simple-statistics.min.js.map -o dist/simple-statistics.min.js",
"jsdoctest": "mocha --require jsdoctest index.js"
},
"main": "index.js",
"engines": {
"node": "*"
},
"license": "ISC",
"keywords": [
"descriptive",
"linear",
"math",
"probability",
"regression",
"statistics"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}