-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "@cdxoo/dbscan",
"version": "1.1.1",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "npm run test:functional && npm run test:module-interface",
"test:dtslint": "npx dtslint --localTs node_modules/typescript/lib ./types",
"test:functional": "npx mocha --config mocha.config.json test/functional",
"test:module-interface": "npx mocha --config mocha.config.json test/module-interface/all-tests.spec.js",
"prepublishOnly": "npm test",
"release:dry": "npx release-it --dry-run --no-npm",
"release:beta": "release-it --preRelease=beta",
"release": "release-it"
},
"author": "Jan Schwalbe",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"dtslint": "^4.2.1",
"mocha": "^10.2.0",
"release-it": "^15.11.0"
},
"description": "Customizable DBSCAN clustering for arbitrary datasets",
"repository": {
"type": "git",
"url": "git+https://github.com/cdxOo/dbscan.git"
},
"keywords": [
"cluster",
"clustering",
"DBSCAN",
"density",
"density-based-clustering",
"statistics"
],
"bugs": {
"url": "https://github.com/cdxOo/dbscan/issues"
},
"homepage": "https://github.com/cdxOo/dbscan#readme"
}