-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "stats-analysis",
"version": "2.0.0",
"description": "Engineering statistics and data analysis",
"main": "dist/stats.js",
"scripts": {
"test": "make test",
"lint": "standard",
"prepublish": "babel --plugins transform-es2015-modules-umd stats.js --out-dir dist",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha",
"codecov": "npm run cov && cat coverage/coverage.json | codecov"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-plugin-transform-es2015-modules-umd": "^6.6.0",
"codecov.io": "^0.1.6",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"standard": "^6.0.7"
},
"repository": {
"type": "git",
"url": "[email protected]:alyssaq/stats-analysis.git"
},
"keywords": [
"statistics",
"analysis",
"analytics",
"outliers",
"median",
"mean",
"standard",
"deviation"
],
"author": "Alyssa Quek",
"license": "MIT",
"bugs": {
"url": "https://github.com/alyssaq/stats-analysis/issues"
},
"homepage": "https://github.com/alyssaq/stats-analysis"
}