-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "@elstats/percentile",
"version": "3.4.0",
"description": "Calculate n-th percentile",
"main": "./dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "ava --verbose && eslint --fix .",
"prepare": "npm t && rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/elstats/percentile.git"
},
"keywords": [
"percentile",
"stats",
"statistics",
"analytics"
],
"author": "Michał Jezierski",
"license": "MIT",
"bugs": {
"url": "https://github.com/elstats/percentile/issues"
},
"homepage": "https://github.com/elstats/percentile",
"devDependencies": {
"ava": "^0.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babelrc-rollup": "^3.0.0",
"eslint-config-helmut": "^3.0.0",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"ava": {
"concurrency": 4,
"require": [
"babel-register"
],
"babel": "inherit"
}
}