-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "percentile",
"version": "1.6.0",
"description": "Calculate a percentile for given array of values",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"keywords": [
"math",
"calculate",
"stats",
"percentile"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d4rkr00t/percentile"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
"build:types": "rm -rf ./lib/index.d.ts && tsc -p tsconfig.json",
"lint": "eslint lib test",
"format": "prettier ./lib/index.js ./test/index.js --write",
"format:check": "prettier ./lib/index.js ./test/index.js --check",
"bench": "node ./scripts/bench.js",
"test": "ava",
"ci:github-release": "conventional-github-releaser -p angular",
"pmm:prepare": "npm run format:check && npm run build:types && npm run lint && npm test",
"release:major": "pmm major",
"release:minor": "pmm minor",
"release:patch": "pmm patch"
},
"author": {
"name": "Stanislav Sysoev",
"email": "[email protected]",
"url": "https://github.com/d4rkr00t"
},
"pre-commit": [
"pmm:prepare"
],
"devDependencies": {
"ava": "^5.3.1",
"benchmark": "^2.1.4",
"conventional-github-releaser": "^3.1.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"nyc": "^15.1.0",
"pmm": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}