-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "@klarna/geofences-reducer",
"version": "1.3.1",
"description": "Reduces overlapping geofences",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --config config/jest.unit.config.ts",
"test:performance": "jest --config config/jest.performance.config.ts",
"test:coverage": "jest --config config/jest.performance.config.ts --coverage",
"build": "tsc -p config/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klarna/geofences-reducer.git"
},
"keywords": [
"geofence",
"reducer",
"overlap",
"duplicate"
],
"author": "Filipe Correa <filipecorrea@me.com> (http://github.com/filipecorrea)",
"license": "Apache-2.0",
"dependencies": {
"vicinityhash": "^2.4.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}