-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "@indoor-analytics/path-clustering",
"version": "0.0.1",
"description": "Clusters a bunch of paths with graph representation.",
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "find ./src -regex '.*\\.\\(js\\|d.ts\\)' -not -path \"./node_modules/*\" -type f -delete",
"lint": "npx eslint . --ext .ts",
"precommit-msg": "echo Running linter before committing to repository... && exit 0",
"test": "npx ts-mocha test/tests/**/*.test.ts"
},
"precommit": {
"run": [
"precommit-msg",
"lint"
],
"silent": true
},
"author": "Rémy Raes",
"license": "ISC",
"devDependencies": {
"@turf/helpers": "^6.3.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/object-hash": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"mocha": "^8.4.0",
"pre-commit": "^1.2.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.3.0",
"object-hash": "^2.1.1",
"typescript-graph": "^0.2.1"
}
}