-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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": "@graphmetrics/sketches-js",
"version": "0.3.0",
"description": "TypeScript implementation of DDSketch, a distributed quantile sketch algorithm",
"license": "Apache-2.0",
"repository": "https://github.com/GraphMetrics/sketches-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README",
"LICENSE"
],
"keywords": [
"histogram",
"ddsketch",
"sketches",
"quantiles",
"percentiles",
"monitoring"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean; tsc -p tsconfig.build.json",
"clean": "rm -rf dist/*",
"test": "jest",
"lint": "eslint \"src/**/*.{js,ts}\"",
"prepack": "yarn build",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"resolutions": {
"dot-prop": "^4.2.1"
}
}