forked from xcatliu/grubbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 868 Bytes
/
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
{
"name": "grubbs",
"version": "1.4.2",
"description": "Grubbs' test for outliers",
"main": "lib/index.js",
"types": "./index.d.ts",
"scripts": {
"start": "npm test",
"deploy:gh-pages": "./bin/deploy-gh-pages.sh",
"prepublish": "npm test",
"test": "eslint . && echo 'ESLint Passed!\\n\\n' && mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xcatliu/grubbs.git"
},
"keywords": [
"grubbs",
"grubbs-test"
],
"author": "xcatliu <xcatliu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcatliu/grubbs/issues"
},
"homepage": "https://github.com/xcatliu/grubbs#readme",
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.2.0",
"mocha": "^2.4.5"
},
"dependencies": {
"average": "0.0.1",
"compute-stdev": "^1.0.0"
}
}