-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "stat-methods",
"version": "0.2.0",
"description": "A library which provides functions for calculating mathematical statistics of numeric data",
"main": "dist/stat-methods.js",
"scripts": {
"test": "npx jest",
"test-ci": "npx jest -i --coverage --config jest.config.ci.js",
"test-changed": "npx jest -o",
"build": "npx rollup --config",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boristane/stat-methods.js.git"
},
"keywords": [
"statistics, maths, numeric"
],
"author": "Boris Tane",
"license": "MIT",
"bugs": {
"url": "https://github.com/boristane/stat-methods.js/issues"
},
"homepage": "https://github.com/boristane/stat-methods.js#readme",
"devDependencies": {
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"codacy-coverage": "^3.3.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"jest-silent-reporter": "^0.1.1",
"prettier": "^1.17.0",
"release-it": "^9.0.0-beta.2",
"rollup": "^0.67.4",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-progress": "^0.4.0"
}
}