-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "geocoordinate",
"version": "2.0.31",
"author": "Christian Kaatz <[email protected]>",
"description": "Classes to work with geo coordinates and bounding boxes",
"repository": "git://github.com/chrkaatz/GeoCoordinate.git",
"main": "./lib/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"lint": "eslint lib/",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose"
},
"license": "MIT",
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-jest": "24.4.0",
"jest": "27.2.1",
"jsdoc": "3.6.7",
"lodash": "4.17.21",
"minami": "1.2.3",
"prettier": "2.4.1",
"random-seed": "0.3.0"
},
"engines": {
"node": ">= 8"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.{js,json}",
"!/node_modules/"
],
"coverageReporters": [
"text",
"lcov",
"text-summary"
],
"coverageThreshold": {
"global": {
"statements": 95,
"branches": 90,
"functions": 95,
"lines": 95
}
}
}
}