-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 827 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 827 Bytes
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
{
"name": "@indoor-analytics/multi-path",
"version": "0.0.2",
"description": "Computes average path segments from an ensemble of paths.",
"main": "src/main.js",
"types": "src/main.d.ts",
"scripts": {
"build": "npx tsc",
"indoor-analytics": "npm run build && mocha -r ts-node/register test/integration/indoor.analytics.test.ts",
"prepare": "npm run build",
"test": "npm run build && mocha -r ts-node/register test/tests/*.test.ts"
},
"author": "Rémy Raes",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"ts-node": "^8.10.1",
"tslint": "^6.1.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@turf/turf": "^5.1.6",
"geojson": "^0.5.0"
}
}