-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "k-medoids",
"version": "1.0.7",
"description": "Implementation of the k-mediods clustering algorithm",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"prebuild:publish": "npm run clean",
"build:publish": "tsc -p ./tsconfig.publish.json",
"postbuild:publish": "tslint -p ./tsconfig.publish.json",
"prepublish": "npm run build:publish",
"build:test": "tsc",
"pretest": "npm run build:test",
"postruntests": "tslint -p .",
"runtests": "mocha --require source-map-support/register",
"test": "npm run runtests",
"watch-tests": "tsc-watch --onSuccess \"npm run runtests\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stewart-r/k-medoids.git"
},
"keywords": [
"k-medoids",
"kmedoids",
"clustering",
"cluster",
"partition",
"partitioning",
"medoid"
],
"author": "Stewart Robertson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stewart-r/k-medoids/issues"
},
"homepage": "https://github.com/stewart-r/k-medoids#readme",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/js-combinatorics": "^0.5.29",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"js-combinatorics": "^0.5.3",
"mocha": "^10.2.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"tsc-watch": "^1.0.13",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}