-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.15 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "geo-position.ts",
"version": "1.4.0",
"description": "Library for working with GeoPosition fot TypeScript",
"main": "./lib/index.js",
"repository": "https://github.com/0xF6/geo-position.ts.git",
"author": "Yuuki Wesp <ls-micro@ya.ru>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^15.12.2",
"ava": "^2.4.0",
"nyc": "^15.1.0",
"tap-nyan": "^1.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"build": "tsc",
"test": "ava --verbose",
"test-nya": "ava --tap | tap-nyan",
"report-test": "yarn nyc --reporter=lcov --reporter=text-lcov ava test/**/*.test.ts"
},
"keywords": [
"geo",
"geo-position",
"position",
"distance",
"validate",
"gps"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"test"
],
"reporter": [
"html",
"lcov",
"text"
],
"all": true,
"cache": true
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {}
}