-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "kmeans-clust",
"version": "0.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "k-means clustering in TypeScript",
"keywords": [
"kmeans",
"k-means",
"cluster",
"clustering",
"typescript",
"kmeans++",
"k-means++"
],
"scripts": {
"compile": "tsc -d",
"compile:examples": "webpack --config example/webpack.config.ts",
"prepublishOnly": "npm run lint && tsc -d",
"lint": "tslint -t verbose index.ts src/**.ts src/**/**.ts example/**.ts example/**/**.ts",
"test": "mocha tests/**.test.ts tests/**/**.test.ts --opts ./mocha.opts",
"test:coverage": "nyc mocha tests/**.test.ts tests/**/**.test.ts --opts ./mocha.opts",
"test:coverage:html": "nyc --reporter=html mocha tests/**.test.ts tests/**/**.test.ts --opts ./mocha.opts && open .coverage/index.html",
"example": "webpack-dev-server --config example/webpack.config.ts --open"
},
"author": "Daniel Król",
"license": "MIT",
"dependencies": {
"typescript-object-utils": "^0.3.0"
},
"devDependencies": {
"@types/d3": "^5.0.1",
"@types/mocha": "^5.0.0",
"@types/node": "^10.0.0",
"awesome-typescript-loader": "^5.2.1",
"d3": "^5.7.0",
"d3-delaunay": "^4.1.5",
"mocha": "^5.1.0",
"nyc": "^13.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.3.0",
"typescript": "^3.0.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.0.0"
},
"files": [
"src/",
"dist/"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src/**"
],
"reporter": [
"text-summary"
],
"report-dir": "./.coverage",
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/mleko/kmeans-clust.git"
}
}